diff --git a/src/pages/user.tsx b/src/pages/user.tsx
index 0650afc..1e5e59d 100644
--- a/src/pages/user.tsx
+++ b/src/pages/user.tsx
@@ -329,9 +329,7 @@ export const user = new Elysia()
.post(
"/login",
async function handler({ body, set, redirect, jwt, cookie: { auth } }) {
- const existingUser = db.query("SELECT * FROM users WHERE email = ?").as(User).get(
- body.email,
- );
+ const existingUser = db.query("SELECT * FROM users WHERE email = ?").as(User).get(body.email);
if (!existingUser) {
set.status = 403;
@@ -507,11 +505,7 @@ export const user = new Elysia()
-
+
Cancel