Skip to content

Commit

Permalink
Fix/adjust options (#89)
Browse files Browse the repository at this point in the history
* fix:adjust value of options

* fix:adjust value of rule
  • Loading branch information
vincentxuu authored Oct 7, 2024
1 parent 385e9fc commit 8ea0691
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/Group/Form/useGroupForm.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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, '請輸入揪團描述')
Expand Down

0 comments on commit 8ea0691

Please sign in to comment.