diff --git a/apps/hash-frontend/src/pages/shared/entities-visualizer/entities-table.tsx b/apps/hash-frontend/src/pages/shared/entities-visualizer/entities-table.tsx index 13cff758baf..ccdcfcfbc3c 100644 --- a/apps/hash-frontend/src/pages/shared/entities-visualizer/entities-table.tsx +++ b/apps/hash-frontend/src/pages/shared/entities-visualizer/entities-table.tsx @@ -95,7 +95,7 @@ export const EntitiesTable: FunctionComponent< hasSomeLinks: boolean; hidePropertiesColumns?: boolean; hideColumns?: (keyof EntitiesTableRow)[]; - // limit: number; + limit: number; loading: boolean; loadingComponent: ReactElement; isViewingOnlyPages: boolean; @@ -124,7 +124,7 @@ export const EntitiesTable: FunctionComponent< handleEntityClick, hideColumns, hidePropertiesColumns = false, - // limit, + limit: _limit, loading: entityDataLoading, loadingComponent, isViewingOnlyPages, @@ -633,15 +633,6 @@ export const EntitiesTable: FunctionComponent< ); } - console.log( - JSON.stringify({ - rows: rows.length, - tableData: !!tableData, - entityDataLoading, - tableDataCalculating, - }), - ); - return (