Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
CiaranMn committed Jan 13, 2025
1 parent 1ec9287 commit 435962e
Showing 1 changed file with 2 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -124,7 +124,7 @@ export const EntitiesTable: FunctionComponent<
handleEntityClick,
hideColumns,
hidePropertiesColumns = false,
// limit,
limit: _limit,
loading: entityDataLoading,
loadingComponent,
isViewingOnlyPages,
Expand Down Expand Up @@ -633,15 +633,6 @@ export const EntitiesTable: FunctionComponent<
);
}

console.log(
JSON.stringify({
rows: rows.length,
tableData: !!tableData,
entityDataLoading,
tableDataCalculating,
}),
);

return (
<Stack gap={1}>
<Grid
Expand Down

0 comments on commit 435962e

Please sign in to comment.