update profile-form.tsx #106

This commit is contained in:
rustmailer
2026-03-27 09:04:18 +08:00
parent 7626634863
commit 01182dc90d
@@ -52,7 +52,7 @@ const profileSchema = (t: (key: string) => string) => z.object({
.string({
required_error: t('settings.profile.validation.username.required'),
})
.min(5, {
.min(3, {
message: t('settings.profile.validation.username.min'),
})
.max(32, {