From 8b9ff9c3761b82756e9225cc09bf74e6a18d9c69 Mon Sep 17 00:00:00 2001 From: songtianlun Date: Sat, 30 Aug 2025 13:04:50 +0800 Subject: [PATCH] add sign in log failed log --- src/components/auth/AuthForm.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/auth/AuthForm.tsx b/src/components/auth/AuthForm.tsx index 15af66f..9550461 100644 --- a/src/components/auth/AuthForm.tsx +++ b/src/components/auth/AuthForm.tsx @@ -45,6 +45,7 @@ export function AuthForm({ mode, onToggleMode }: AuthFormProps) { callbackURL: '/' }) if (error) { + console.log("Sign in failed: ", error) setError(error.message || 'Sign in failed') setLoading(false) }