diff --git a/front/components/forms/signinform.tsx b/front/components/forms/signinform.tsx index 7f7d985..24aa310 100644 --- a/front/components/forms/signinform.tsx +++ b/front/components/forms/signinform.tsx @@ -110,6 +110,7 @@ const LoginForm = ({ onSubmit }: SigninFormProps) => { formData.password.value ); toast.show({ description: resp, colorScheme: 'secondary' }); + setSubmittingForm(false); } catch (e) { toast.show({ description: e as string, colorScheme: 'red', avoidKeyboard: true }) setSubmittingForm(false);