From 750252f8509ed9dcad397fd66522b6f23e1d665e Mon Sep 17 00:00:00 2001 From: VincentXu <90778107+vincentxuu@users.noreply.github.com> Date: Mon, 7 Oct 2024 19:59:48 +0800 Subject: [PATCH] adjust the description (#90) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix:adjust value of options (#86) 修正以下: 1.刪除高中以下學歷選項 2.刪除交友相關字眼,並新增選項 3.調整揪團教育階段敘述 4.調整學歷敘述 5.調整性別敘述 * Fix/adjust options (#89) * fix:adjust value of options * fix:adjust value of rule --- components/Group/Form/useGroupForm.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Group/Form/useGroupForm.jsx b/components/Group/Form/useGroupForm.jsx index fd2bc81..f18a272 100644 --- a/components/Group/Form/useGroupForm.jsx +++ b/components/Group/Form/useGroupForm.jsx @@ -47,7 +47,7 @@ const rules = { partnerStyle: z.string().max(50, '請勿輸入超過 50 字'), partnerEducationStep: z .array(z.enum(eduOptions.map(({ label }) => label))) - .min(1, '請選擇的學習階段'), + .min(1, '請選擇適合的學習階段'), description: z .string() .min(1, '請輸入揪團描述')