From 39c7151e514d6c5376784c4ddb83bc678c914139 Mon Sep 17 00:00:00 2001 From: pulipakaa24 Date: Wed, 1 Apr 2026 16:43:19 -0500 Subject: [PATCH] Canceling during sso takes you back to login properly --- components/auth/LoginForm.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/auth/LoginForm.tsx b/components/auth/LoginForm.tsx index 0574006..bfca123 100644 --- a/components/auth/LoginForm.tsx +++ b/components/auth/LoginForm.tsx @@ -71,7 +71,7 @@ export function LoginForm({ onSignUp, onForgotPassword }: Props) { } async function handleGoogle() { - await signIn.social({ provider: 'google', callbackURL: window.location.origin }); + await signIn.social({ provider: 'google', callbackURL: window.location.origin, errorCallbackURL: window.location.origin }); } function scrollToAbout() {