Skip to content

Commit

Permalink
formating
Browse files Browse the repository at this point in the history
  • Loading branch information
vwh committed Jul 23, 2024
1 parent 2f6a66b commit 4e47968
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ export function DBTable() {

const tableName = useMemo(
() => tables[parseInt(selectedTable)]?.name,
[tables, selectedTable]
[tables, selectedTable],
);
const rowCount = useMemo(
() => tables[parseInt(selectedTable)]?.count || 0,
[tables, selectedTable]
[tables, selectedTable],
);

// Reset query and page when table changes
Expand Down

0 comments on commit 4e47968

Please sign in to comment.