Skip to content

Commit

Permalink
hydration fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sliterok committed Mar 9, 2024
1 parent b15c5a5 commit d94739c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/index.page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ export default function MainLayout() {
{ headerName: 'itemsBought', field: 'itemsBought', filter: true },
{ headerName: 'address', field: 'address', filter: true },
]}
rowData={usersQuery.data}
rowData={usersQuery.data || []}
onFilterModified={e => {
const key = e.column.getColId() as keyof IUser
const model = e.filterInstance.getModel()
Expand Down

0 comments on commit d94739c

Please sign in to comment.