diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,12 @@
 Brick changelog
 ---------------
 
+0.60.1
+------
+
+Bug fixes:
+ * `table []` no longer raises `TEUnequalRowSizes`.
+
 0.60
 ----
 
diff --git a/brick.cabal b/brick.cabal
--- a/brick.cabal
+++ b/brick.cabal
@@ -1,5 +1,5 @@
 name:                brick
-version:             0.60
+version:             0.60.1
 synopsis:            A declarative terminal user interface library
 description:
   Write terminal user interfaces (TUIs) painlessly with 'brick'! You
diff --git a/src/Brick/Widgets/Table.hs b/src/Brick/Widgets/Table.hs
--- a/src/Brick/Widgets/Table.hs
+++ b/src/Brick/Widgets/Table.hs
@@ -115,7 +115,7 @@
          then E.throw TEUnequalRowSizes
          else t
     where
-        allSameLength = length (nub (length <$> rows)) == 1
+        allSameLength = length (nub (length <$> rows)) <= 1
         allFixed = all fixedRow rows
         fixedRow = all fixedCell
         fixedCell w = hSize w == Fixed && vSize w == Fixed
