From d680cf4985b3c4233552feb19a0b46579ed4226e Mon Sep 17 00:00:00 2001 From: colinislit Date: Wed, 19 Nov 2025 15:33:03 +0100 Subject: [PATCH] route.ts --- app/auth/callback/route.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/auth/callback/route.ts b/app/auth/callback/route.ts index 133b31b..ff32e9d 100644 --- a/app/auth/callback/route.ts +++ b/app/auth/callback/route.ts @@ -102,7 +102,7 @@ export async function GET(request: NextRequest) { // Check if user signed up with password (has identity provider = 'email') const hasPassword = data.user.identities?.some( - identity => identity.provider === 'email' + (identity: any) => identity.provider === 'email' ) if (isNewUser && !hasPassword) {