can you tell me more? if i can not understand it, i can not use the themes.
C:\Projects\ReactDemo\berry-material-react-3.6-full\src\views\pages\authentication\login\JWTLogin.js
where you update the value of scriptedRef.current? i did not see it.
thanks.
onSubmit={async (values, { setErrors, setStatus, setSubmitting }) => {
try {
await login(values.email, values.password);
if (scriptedRef.current) {
setStatus({ success: true });
setSubmitting(false);
}
} catch (err) {
console.error(err);
if (scriptedRef.current) {
setStatus({ success: false });
setErrors({ submit: err.message });
setSubmitting(false);
}
}
}}
We don't need to update the value of that, that hold the ref of object and tell us that if its same ref or not once we got response from backend, if it's not a same reference, we will not do anything, as user might already move to other page by the time.
You can remove those condition and see the difference.
I recommend to play around those please.