Reset Password in looping
I'm having a problem where when I click on the password reset link that arrived in the email, my code goes into a loop, getting stuck at this part:
if (status === 'validating') {
return (
<div className="flex flex-col items-center justify-center min-h-screen bg-gray-50 p-4">
<div className="w-full max-w-md p-8 space-y-6 bg-white rounded-lg shadow-md text-center">
<h2 className="text-2xl font-bold text-gray-800">Verificando Link</h2>
<p className="text-gray-600">
Aguarde um momento enquanto validamos seu link de recuperação de senha.
</p>
<div className="animate-spin rounded-full h-8 w-8 border-b-2 border-indigo-600 mx-auto"></div>
</div>
</div>
);
} .
Can anyone help me? This is the complete code attached
if (status === 'validating') {
return (
<div className="flex flex-col items-center justify-center min-h-screen bg-gray-50 p-4">
<div className="w-full max-w-md p-8 space-y-6 bg-white rounded-lg shadow-md text-center">
<h2 className="text-2xl font-bold text-gray-800">Verificando Link</h2>
<p className="text-gray-600">
Aguarde um momento enquanto validamos seu link de recuperação de senha.
</p>
<div className="animate-spin rounded-full h-8 w-8 border-b-2 border-indigo-600 mx-auto"></div>
</div>
</div>
);
} .
Can anyone help me? This is the complete code attached