diff --git a/client/pages/Login.tsx b/client/pages/Login.tsx index 1f26a007..4e3d9c96 100644 --- a/client/pages/Login.tsx +++ b/client/pages/Login.tsx @@ -35,10 +35,11 @@ export default function Login() { const [email, setEmail] = useState(""); const [password, setPassword] = useState(""); const [fullName, setFullName] = useState(""); + const [manualVerificationLink, setManualVerificationLink] = useState(null); const navigate = useNavigate(); const { signIn, signUp, signInWithOAuth, user, loading, profileComplete } = useAuth(); - const { success: toastSuccess, error: toastError } = useAethexToast(); + const { info: toastInfo, error: toastError } = useAethexToast(); // After auth resolves and a user exists, navigate to dashboard useEffect(() => {