From 0273441e9b3dd1490edea36b55d98ca37da10480 Mon Sep 17 00:00:00 2001 From: Linus Flood Date: Fri, 18 Oct 2024 11:30:05 +0200 Subject: [PATCH] Added props --- .../hotelreservation/select-hotel/page.tsx | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/app/[lang]/(live)/(public)/hotelreservation/select-hotel/page.tsx b/app/[lang]/(live)/(public)/hotelreservation/select-hotel/page.tsx index 836964d1e..881d270bc 100644 --- a/app/[lang]/(live)/(public)/hotelreservation/select-hotel/page.tsx +++ b/app/[lang]/(live)/(public)/hotelreservation/select-hotel/page.tsx @@ -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 (