diff --git a/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/map/page.tsx b/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/map/page.tsx index 024ab49c5..a1d11d80d 100644 --- a/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/map/page.tsx +++ b/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/map/page.tsx @@ -16,11 +16,16 @@ export default async function SelectHotelMapPage({ }: PageArgs) { setLang(params.lang) + const roomKey = Object.keys(searchParams) + .filter((key) => key.startsWith("room[")) + .map((key) => searchParams[key]) + .join("-") + return (
} > diff --git a/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/page.tsx b/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/page.tsx index b6f7bb4d9..5dc369727 100644 --- a/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/page.tsx +++ b/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-hotel/page.tsx @@ -20,7 +20,7 @@ export default async function SelectHotelPage({ return ( } > diff --git a/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-rate/page.tsx b/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-rate/page.tsx index e9f4ce451..4032c91ef 100644 --- a/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-rate/page.tsx +++ b/app/[lang]/(live)/(public)/hotelreservation/(standard)/select-rate/page.tsx @@ -79,6 +79,11 @@ export default async function SelectRatePage({ const hotelId = +hotel.id + const roomKey = Object.keys(searchParams) + .filter((key) => key.startsWith("room[")) + .map((key) => searchParams[key]) + .join("-") + return ( <> - }> + } + >