diff --git a/jendeley-frontend/src/App.tsx b/jendeley-frontend/src/App.tsx index a447d62..58f90bc 100644 --- a/jendeley-frontend/src/App.tsx +++ b/jendeley-frontend/src/App.tsx @@ -132,7 +132,7 @@ function ShowText(text: string | undefined) { function stringArrayFilterFn( row: any, id: string, - filterValue: string | number + filterValue: string | number, ) { const authors = row.getValue(id) as string[]; const fv = @@ -188,7 +188,7 @@ function CellHref(cell: MRT_Cell, row: MRT_Row) { function useColumnDefs( tableData: ApiDB, setTableData: React.Dispatch>, - columnFilters: MRT_ColumnFiltersState + columnFilters: MRT_ColumnFiltersState, ): MRT_ColumnDef[] { return useMemo[]>( () => [ @@ -299,7 +299,7 @@ function useColumnDefs( size: 400, }, ], - [tableData, setTableData] + [tableData, setTableData], ); } @@ -323,7 +323,7 @@ function App() { "Fetching from DB because of changes in columnFilters or sorting. columnFilters = ", columnFilters, "sorting = ", - sorting + sorting, ); fetchDB(columnFilters, setTableData, setConnectionError);