We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 14c2dcd + 2f18026 commit 245a199Copy full SHA for 245a199
1 file changed
src/lib/domain/vehicle.ts
@@ -62,11 +62,13 @@ export const vehicleSchema = z.object({
62
.string()
63
.min(2, 'It must be more than 1 character.')
64
.max(50, 'It must be less than 50 characters.')
65
+ .transform((val) => val.toUpperCase())
66
.nullable(),
67
vin: z
68
69
70
71
72
73
color: z
74
0 commit comments