diff --git a/app/[lang]/(live)/(public)/hotelreservation/select-hotel/page.tsx b/app/[lang]/(live)/(public)/hotelreservation/select-hotel/page.tsx index 032ff30f0..634c4cf1c 100644 --- a/app/[lang]/(live)/(public)/hotelreservation/select-hotel/page.tsx +++ b/app/[lang]/(live)/(public)/hotelreservation/select-hotel/page.tsx @@ -20,12 +20,20 @@ async function getAvailableHotels({ roomStayStartDate, roomStayEndDate, adults, + children, + promotionCode, + attachedProfileId, + reservationProfileType, }: AvailabilityInput): Promise { const getAvailableHotels = await serverClient().hotel.availability.get({ cityId: cityId, roomStayStartDate: roomStayStartDate, roomStayEndDate: roomStayEndDate, adults: adults, + children: children, + promotionCode: promotionCode, + attachedProfileId: attachedProfileId, + reservationProfileType: reservationProfileType, }) if (!getAvailableHotels) return null