diff --git a/pages/login.vue b/pages/login.vue index 59c382c..7212b99 100644 --- a/pages/login.vue +++ b/pages/login.vue @@ -9,6 +9,7 @@ const { data, error } = await supabase.auth.signInWithOAuth({ provider: 'google', }) + navigateTo('dashboard'); // This doesn't work, it navigates prior to the login handshake completing and then the handshake lands on the index page and ignores the middleware. }