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;