feat: add no breakfast message to price details modal and to conf page receipt

This commit is contained in:
Simon Emanuelsson
2025-05-09 11:56:50 +02:00
parent 3cd8c59dd3
commit ca29237f2e
14 changed files with 389 additions and 279 deletions
@@ -15,7 +15,7 @@ export interface Room {
adults: number
bedDescription: string
bookingCode: string | null
breakfast?: PackageSchema
breakfast: PackageSchema | false | undefined
breakfastIncluded: boolean
cheques: number
childBedPreferences: ChildBedPreference[]
+1 -1
View File
@@ -42,7 +42,7 @@ export type Room = Pick<
| "vouchers"
> & {
bedType: BedTypeSchema
breakfast: Omit<BreakfastPackage, "requestedPrice"> | null
breakfast: Omit<BreakfastPackage, "requestedPrice"> | undefined | false
breakfastChildren: Omit<BreakfastPackage, "requestedPrice"> | null
childrenAsString: string
childrenInRoom: Child[]