fix ModalRegistration
This commit is contained in:
parent
4b0176079e
commit
0764002a60
@ -129,12 +129,14 @@ export const ModalRegistration = ({ active, setActive }) => {
|
|||||||
<Loader style={"green"} />
|
<Loader style={"green"} />
|
||||||
) : (
|
) : (
|
||||||
<BaseButton
|
<BaseButton
|
||||||
onClick={(e) => {
|
onClick={async (e) => {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
setLoader(true);
|
setLoader(true);
|
||||||
handleSubmit(e);
|
const result = await handleSubmit(e);
|
||||||
|
if (result === true) {
|
||||||
|
closeModal();
|
||||||
|
}
|
||||||
setLoader(false);
|
setLoader(false);
|
||||||
closeModal();
|
|
||||||
}}
|
}}
|
||||||
styles="button-box__submit"
|
styles="button-box__submit"
|
||||||
>
|
>
|
||||||
|
@ -102,6 +102,9 @@ export const useFormValidation = (
|
|||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error("Error submitting form:", error);
|
console.error("Error submitting form:", error);
|
||||||
}
|
}
|
||||||
|
return true;
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user