Fix me page not loading anything

This commit is contained in:
Regalijan 2024-05-15 16:07:01 -04:00
parent 1d22fd91b1
commit b5ffc8928c
Signed by: regalijan
GPG Key ID: 5D4196DA269EF520

View File

@ -37,7 +37,7 @@ export async function loader({ context }: { context: RequestContext }) {
context.env.D1.prepare(
`SELECT *
FROM ${itemType}
WHERE user = ?
WHERE json_extract(user, '$.id') = ?
ORDER BY created_at DESC;`,
)
.bind(currentUser.id)