Merged in fix/SW-978-error-page-gdansk (pull request #1002)
Fix/SW-978 error page gdansk Approved-by: Niclas Edenvin
This commit is contained in:
@@ -18,3 +18,7 @@ export type HotelData = {
|
||||
hotelData: Hotel
|
||||
price: ProductType
|
||||
}
|
||||
|
||||
export interface NullableHotelData extends Omit<HotelData, "hotelData"> {
|
||||
hotelData: HotelData["hotelData"] | null
|
||||
}
|
||||
|
||||
@@ -56,7 +56,7 @@ export interface HotelCardDialogProps {
|
||||
}
|
||||
|
||||
export interface HotelCardDialogListingProps {
|
||||
hotels: HotelData[]
|
||||
hotels: HotelData[] | null
|
||||
activeCard: string | null | undefined
|
||||
onActiveCardChange: (hotelName: string | null) => void
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user