Merged in fix/SW-2500-sync-hotel-images-and- (pull request #2569)

fix(SW-2500): Fixed no image gives error on confirmation and booking page

* fix(SW-2500): Fixed no image gives error on confirmation and booking page


Approved-by: Anton Gunnarsson
Approved-by: Matilda Landström
This commit is contained in:
Hrishikesh Vaipurkar
2025-07-28 08:51:43 +00:00
parent 42ab6e58b3
commit 36e8ac11d1
5 changed files with 14 additions and 6 deletions

View File

@@ -4,6 +4,6 @@ export interface RoomProps {
booking: BookingConfirmation["booking"]
checkInTime: string
checkOutTime: string
img: NonNullable<BookingConfirmation["room"]>["images"][number]
img?: NonNullable<BookingConfirmation["room"]>["images"][number]
roomName: NonNullable<BookingConfirmation["room"]>["name"]
}