diff --git a/api/src/routes/auth.routes.ts b/api/src/routes/auth.routes.ts index 7acfa31..772db7b 100644 --- a/api/src/routes/auth.routes.ts +++ b/api/src/routes/auth.routes.ts @@ -225,7 +225,7 @@ async function handler(ctx: RouteContext): Promise { // GET /auth/me — return current session info if (pathname === "/auth/me" && method === "GET") { const session = getSession(ctx.req); - if (!session) return jsonResponse({ authenticated: false, enrolled: false }); + if (!session) return jsonResponse({ authenticated: false, enrolled: true }); return jsonResponse({ authenticated: true, enrolled: true,