🔧 Update tsconfig.json and fix errors (#1859)

This commit is contained in:
Alejandra
2025-09-08 12:51:26 +02:00
committed by GitHub
parent d8bdcb2ef2
commit 5f1ba46404
6 changed files with 8 additions and 8 deletions

View File

@@ -46,8 +46,8 @@ function UsersTable() {
const setPage = (page: number) => {
navigate({
to: "/_layout/admin",
search: { page: page },
to: "/admin",
search: (prev) => ({ ...prev, page }),
})
}

View File

@@ -52,8 +52,8 @@ function ItemsTable() {
const setPage = (page: number) => {
navigate({
to: "/_layout/items",
search: { page: page },
to: "/items",
search: (prev) => ({ ...prev, page }),
})
}