Added props

This commit is contained in:
Linus Flood
2024-10-18 11:30:05 +02:00
parent bbf52c8dce
commit 0273441e9b

View File

@@ -46,14 +46,23 @@ export default async function SelectHotelPage({
channel: TrackingChannelEnum["hotelreservation"],
pageName: "hotelreservation|select-hotel",
siteSections: "hotelreservation|select-hotel",
createdDate: "",
publishedDate: "",
pageType: "selecthotelpage",
pageType: "bookinghotelspage",
}
const hotelsTrackingData: TrackingSDKHotelInfo = {
availableResults: hotels.length,
searchTerm: tempSearchTerm,
arrivalDate: new Date("2025-05-02"),
departureDate: new Date("2025-05-03"),
noOfAdults: 1,
noOfChildren: 0,
noOfRooms: 1,
duration: 1,
leadTime: 187,
searchType: "hotel",
bookingTypeofDay: "weekend",
country: hotels[0].hotelData.address.country,
region: hotels[0].hotelData.address.city,
}
return (