We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf111d2 commit 26b9ef2Copy full SHA for 26b9ef2
frontend/src/routes/_layout/admin.tsx
@@ -46,7 +46,7 @@ function UsersTable() {
46
47
const setPage = (page: number) =>
48
navigate({
49
- search: (prev: { [key: string]: string }) => ({ ...prev, String(page) }),
+ search: (prev) => ({ ...prev, page: String(page) })
50
})
51
52
const users = data?.data.slice(0, PER_PAGE) ?? []
frontend/src/routes/_layout/items.tsx
@@ -52,7 +52,7 @@ function ItemsTable() {
53
54
55
56
57
58
const items = data?.data.slice(0, PER_PAGE) ?? []
0 commit comments