From 6ddd29bdbdaf04c22906b92b4432d41d4aac9171 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Tue, 14 Oct 2025 07:14:58 +0000 Subject: [PATCH] Introduce manual verification state cgen-44da69fd5f6a40efb1dfa15fa3b9597f --- client/pages/Login.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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(() => {