Files
web/packages/booking-flow/lib/components/EnterDetails/Breakfast/schema.ts
Joakim Jäderberg 7dee6d5083 Merged in chore/move-enter-details (pull request #2778)
Chore/move enter details

Approved-by: Anton Gunnarsson
2025-09-11 07:16:24 +00:00

7 lines
192 B
TypeScript

import { z } from "zod"
export type BreakfastFormSchema = z.infer<typeof breakfastFormSchema>
export const breakfastFormSchema = z.object({
breakfast: z.string().or(z.literal("false")),
})