From cff5fccdee03b3a04e0c39ebd1a7dc348f8e6c71 Mon Sep 17 00:00:00 2001 From: Luke Hagar Date: Wed, 28 May 2025 12:03:53 -0500 Subject: [PATCH] corrected redirect --- src/routes/auth/+page.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/auth/+page.svelte b/src/routes/auth/+page.svelte index 5e85363..ad5a25e 100644 --- a/src/routes/auth/+page.svelte +++ b/src/routes/auth/+page.svelte @@ -118,7 +118,7 @@ const { error } = await supabase.auth.signInWithOAuth({ provider: provider as any, options: { - redirectTo: `${window.location.origin}/dashboard` + redirectTo: `${window.location.origin}/app/dashboard` } }); if (error) throw error;