We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c89ca7e commit 2fea1a5Copy full SHA for 2fea1a5
frontend/src/components/auth/SignInForm.tsx
@@ -81,10 +81,7 @@ const SignInForm = ({ redirectPath }: { redirectPath: string }) => {
81
82
const validationSchema = yup.object().shape({
83
emailOrUsername: yup.string().required(t("common.error.field-required")),
84
- password: yup
85
- .string()
86
- .min(8, t("common.error.too-short", { length: 8 }))
87
- .required(t("common.error.field-required")),
+ password: yup.string().required(t("common.error.field-required")),
88
});
89
90
const form = useForm({
0 commit comments