Skip to content

Commit

Permalink
making size optional
Browse files Browse the repository at this point in the history
  • Loading branch information
sigruntg committed Dec 20, 2024
1 parent 53284bb commit b597278
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ export const NewMachineAnswersSchema = z.object({
streetRegistration: z
.object({
registerToTraffic: z.enum([YES, NO]),
size: z.enum(['1', '2', '3']),
size: z.enum(['1', '2', '3']).optional(),
})
.optional(),
}),
Expand Down

0 comments on commit b597278

Please sign in to comment.