diff --git a/packages/lib/next-auth/auth-options.ts b/packages/lib/next-auth/auth-options.ts index 6c285fae3..359715f73 100644 --- a/packages/lib/next-auth/auth-options.ts +++ b/packages/lib/next-auth/auth-options.ts @@ -62,8 +62,7 @@ export const NEXT_AUTH_OPTIONS: AuthOptions = { }), ], callbacks: { - async jwt({ token, user, account, profile }) { - console.log('jwt', { token, user, account, profile }); + async jwt({ token, user }) { const dbUser = await prisma.user.findFirst({ where: { email: token.email as string,