diverse BugFixes

This commit is contained in:
2024-08-12 17:18:32 +02:00
parent 3a6a64cce9
commit ec0576e7b8
17 changed files with 118 additions and 100 deletions

View File

@@ -102,7 +102,7 @@ const USStates = z.enum([
'WY',
]);
export const AreasServedSchema = z.object({
county: z.string().nonempty('County is required'),
county: z.string().optional().nullable(),
state: z.string().nonempty('State is required'),
});