send confirm password reset email

This commit is contained in:
Milo Schwartz 2024-12-22 17:27:09 -05:00
parent 4b34353354
commit af2d78cbfb
No known key found for this signature in database
7 changed files with 114 additions and 13 deletions

View file

@ -62,7 +62,7 @@ export default function LoginForm({ redirect, onLogin }: LoginFormProps) {
const [error, setError] = useState<string | null>(null);
const [loading, setLoading] = useState(false);
const [mfaRequested, setMfaRequested] = useState(true);
const [mfaRequested, setMfaRequested] = useState(false);
const form = useForm<z.infer<typeof formSchema>>({
resolver: zodResolver(formSchema),