Skip to content

Commit 9119ca1

Browse files
committed
chore: adjust captitalization of labels, make subject display length optional
1 parent 4dbcb82 commit 9119ca1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apps/web/src/routes/_app/group/manage.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ const ManageGroupForm = ({ data, onSubmit, readOnly }: ManageGroupFormProps) =>
107107
return {
108108
kind: 'number',
109109
label: t({
110-
en: 'Enter minimum age',
110+
en: 'Enter Minimum Age',
111111
fr: "Entrez l'âge minimum"
112112
}),
113113
variant: 'input'
@@ -195,7 +195,7 @@ const ManageGroupForm = ({ data, onSubmit, readOnly }: ManageGroupFormProps) =>
195195
idValidationRegexErrorMessageFr: z.string().optional(),
196196
minimumAge: z.number().int().positive().optional(),
197197
minimumAgeApplied: z.boolean().optional(),
198-
subjectIdDisplayLength: z.number().int().min(1)
198+
subjectIdDisplayLength: z.number().int().min(1).optional()
199199
})}
200200
onSubmit={(data) => {
201201
void onSubmit({

0 commit comments

Comments
 (0)