diff --git a/src/qqq/components/widgets/tables/TableCard.tsx b/src/qqq/components/widgets/tables/TableCard.tsx
index cdfcaba..2240fb2 100644
--- a/src/qqq/components/widgets/tables/TableCard.tsx
+++ b/src/qqq/components/widgets/tables/TableCard.tsx
@@ -93,41 +93,25 @@ function TableCard({noRowsFoundHTML, data, rowsPerPage, hidePaginationDropdown,
/>
: noRowsFoundHTML ?
-
- {
- noRowsFoundHTML ? (
- parse(noRowsFoundHTML)
- ) : "No rows found"
- }
+
+ {noRowsFoundHTML ? (parse(noRowsFoundHTML)) : "No rows found"}
:
-
-
-
- {Array(8).fill(0).map((_, i) =>
-
-
-
- )}
-
-
-
- {Array(5).fill(0).map((_, i) =>
-
- {Array(8).fill(0).map((_, j) =>
-
-
-
- )}
-
- )}
-
+
+ {Array(8).fill(0).map((_, i) =>
+
+
+
+ )}
+ {Array(5).fill(0).map((_, i) =>
+ Array(8).fill(0).map((_, j) =>
+
+
+
+ )
+ )}
}