diff --git a/ui/src/components/application/ApplicationForm.vue b/ui/src/components/application/ApplicationForm.vue index e9cd4f0..9bcc058 100644 --- a/ui/src/components/application/ApplicationForm.vue +++ b/ui/src/components/application/ApplicationForm.vue @@ -36,7 +36,7 @@ const formSchema = toTypedSchema(z.object({ timezone: z.string().nonempty(), canAttendSaturday: z.boolean(), interests: z.string().nonempty(), - aknowledgeRules: z.literal(true, { + acknowledgeRules: z.literal(true, { errorMap: () => ({ message: "Required" }) }), })) @@ -45,7 +45,7 @@ const formSchema = toTypedSchema(z.object({ const fallbackInitials = { military: false, canAttendSaturday: false, - aknowledgeRules: false, + acknowledgeRules: false, } const props = defineProps<{ @@ -267,7 +267,7 @@ onMounted(() => { - + Community Code of Conduct