API lib cleanup, 404 hosts WIP

This commit is contained in:
Jamie Curnow
2025-09-21 17:16:46 +10:00
parent 058f49ceea
commit 54e036276a
76 changed files with 921 additions and 544 deletions

View File

@@ -7,11 +7,9 @@ function TableBody<T>(props: TableLayoutProps<T>) {
const rows = tableInstance.getRowModel().rows;
if (rows.length === 0) {
return emptyState ? (
emptyState
) : (
return (
<tbody className="table-tbody">
<EmptyRow tableInstance={tableInstance} />
{emptyState ? emptyState : <EmptyRow tableInstance={tableInstance} />}
</tbody>
);
}