From fc4181cd461dc2d98aa163c773e036481a02a7bb Mon Sep 17 00:00:00 2001 From: Ryan Salazar Date: Sun, 10 May 2026 13:10:51 +0000 Subject: [PATCH] HOTFIX: redirect post-login to /home-page (where auth works) instead of /contributor (race condition) --- src/app/client-login/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/client-login/page.tsx b/src/app/client-login/page.tsx index 4e9296a..76400e3 100644 --- a/src/app/client-login/page.tsx +++ b/src/app/client-login/page.tsx @@ -49,7 +49,7 @@ export default function ClientLoginPage() { // its NextResponse. Hard reload so the server re-renders with the // cookie and the browser supabase client picks it up from // document.cookie on page load. - window.location.href = '/contributor'; + window.location.href = '/home-page'; } catch (err: any) { setError(err.message || 'An error occurred'); console.error('Login exception:', err);