Files
web/apps/scandic-web/components/HotelReservation/EnterDetails/Breakfast/schema.ts
Anton Gunnarsson 7e97b74c18 Merged in chore/remove-unused-code (pull request #2229)
Remove unused code

* Remove unused scandic-web files

* Remove unused exports


Approved-by: Joakim Jäderberg
2025-05-30 12:41:18 +00:00

6 lines
122 B
TypeScript

import { z } from "zod"
export const breakfastFormSchema = z.object({
breakfast: z.string().or(z.literal("false")),
})