From 01182dc90d0dfa360e0948ceee4f449b7625222e Mon Sep 17 00:00:00 2001 From: rustmailer Date: Fri, 27 Mar 2026 09:04:18 +0800 Subject: [PATCH] update profile-form.tsx #106 --- web/src/features/settings/profile/profile-form.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/features/settings/profile/profile-form.tsx b/web/src/features/settings/profile/profile-form.tsx index 6979a6b..3befb51 100644 --- a/web/src/features/settings/profile/profile-form.tsx +++ b/web/src/features/settings/profile/profile-form.tsx @@ -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, {