useSignInEmailSecurityKey
const { signInEmailSecurityKey, needsEmailVerification, isLoading, isSuccess, isError, error } = useSignInEmailSecurityKey() console.log({ needsEmailVerification, isLoading, isSuccess, isError, error }) const handleFormSubmit = async (e) => { e.preventDefault() await signInEmailSecurityKey('joe@example.com') }
Was this page helpful?