From c1b1edef869bef2364d3bf3c1583ea84b04e4f5e Mon Sep 17 00:00:00 2001 From: Reifonas Date: Fri, 20 Feb 2026 08:12:06 -0300 Subject: [PATCH] fix: explicit emailRedirectTo on signUp --- src/hooks/useAuth.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/hooks/useAuth.ts b/src/hooks/useAuth.ts index a9121f6..158bea9 100644 --- a/src/hooks/useAuth.ts +++ b/src/hooks/useAuth.ts @@ -248,7 +248,8 @@ export const useAuth = () => { nome: credentials.nome, cpf: credentials.cpf, telefone: credentials.telefone - } + }, + emailRedirectTo: `${window.location.origin}/auth/callback` } });