refactor: run formatter

This commit is contained in:
Elias Schneider
2023-08-17 14:47:58 +02:00
parent 7b34cb14cb
commit f02e2979c4
48 changed files with 1018 additions and 573 deletions

View File

@@ -39,7 +39,7 @@ const ResetPassword = () => {
.string()
.min(8, t("common.error.too-short", { length: 8 }))
.required(t("common.error.field-required")),
})
}),
),
});

View File

@@ -57,7 +57,7 @@ const ResetPassword = () => {
.string()
.email(t("common.error.invalid-email"))
.required(t("common.error.field-required")),
})
}),
),
});
@@ -79,7 +79,7 @@ const ResetPassword = () => {
toast.success(t("resetPassword.notify.success"));
router.push("/auth/signIn");
})
.catch(toast.axiosError)
.catch(toast.axiosError),
)}
>
<TextInput