diff --git a/src/PortingEmbed/features/Address/AddressForm.tsx b/src/PortingEmbed/features/Address/AddressForm.tsx index 42eba83..a86a732 100644 --- a/src/PortingEmbed/features/Address/AddressForm.tsx +++ b/src/PortingEmbed/features/Address/AddressForm.tsx @@ -19,8 +19,7 @@ const schema = z.object({ .string() .trim() .max(35, 'Line 2 must not exceed 35 characters') - .optional() - .nullable(), + .optional(), city: z.string().trim().min(1, 'City is required'), postalCode: z.string().trim().optional(), state: z.string().nullable().optional(),