Returns
void
function cancelMfaVerification(): void;
void
// In your MFA modal's cancel button handler
function MfaModal() {
const handleCancel = () => {
cancelMfaVerification();
closeModal();
};
return <button onClick={handleCancel}>Cancel</button>;
}
Was this page helpful?