diff --git a/src/components/PlansSection.tsx b/src/components/PlansSection.tsx index 746a195..3cbcda7 100644 --- a/src/components/PlansSection.tsx +++ b/src/components/PlansSection.tsx @@ -86,6 +86,7 @@ const formSchema = z.object({ .refine(isStockholmPostalCode, "Vi levererar endast inom Storstockholm (100 00 – 199 99)"), stad: z.string().trim().min(1, "Fyll i stad").max(100), kommentarer: z.string().trim().max(1000).optional(), + password: z.string().max(100).optional(), }); type Method = "card" | "invoice";