Sprint 4 — Etapa 7B completada.
Some checks failed
/ Deploy to Cloudflare Pages (push) Has been cancelled
Some checks failed
/ Deploy to Cloudflare Pages (push) Has been cancelled
This commit is contained in:
@@ -5,7 +5,12 @@ export class SupabaseAuthService implements AuthService {
|
||||
async signInWithGoogle(): Promise<void> {
|
||||
const { error } = await supabase.auth.signInWithOAuth({
|
||||
provider: 'google',
|
||||
options: { redirectTo: window.location.origin },
|
||||
options: {
|
||||
redirectTo: window.location.origin,
|
||||
queryParams: {
|
||||
prompt: 'select_account', // fuerza el selector de cuentas de Google, incluso con sesión activa
|
||||
},
|
||||
},
|
||||
})
|
||||
if (error) throw error
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user