@@ -224,7 +135,7 @@ export default async function SelectHotel({
-
-
-
>
)
}
diff --git a/apps/scandic-web/components/HotelReservation/SelectHotel/selectHotel.module.css b/apps/scandic-web/components/HotelReservation/SelectHotel/selectHotel.module.css
index 1a6a825e6..27c85f3f9 100644
--- a/apps/scandic-web/components/HotelReservation/SelectHotel/selectHotel.module.css
+++ b/apps/scandic-web/components/HotelReservation/SelectHotel/selectHotel.module.css
@@ -86,6 +86,7 @@
.headerContent {
display: block;
}
+
.header {
background-color: var(--Base-Surface-Subtle-Normal);
padding: var(--Spacing-x4) 0 var(--Spacing-x3);
@@ -107,9 +108,11 @@
.sideBar {
max-width: 340px;
}
+
.sideBarItem {
display: block;
}
+
.filter {
display: block;
}
@@ -118,6 +121,7 @@
display: flex;
margin-bottom: var(--Space-x6);
}
+
.mapContainer {
display: flex;
flex-direction: column;
@@ -125,13 +129,16 @@
border-radius: var(--Corner-radius-md);
border: 1px solid var(--Base-Border-Subtle);
}
+
.buttonContainer {
display: none;
}
+
.skeletonContainer .title {
margin-bottom: 0;
}
+
.skeletonContainer .sideBar {
gap: var(--Spacing-x3);
}
-}
+}
\ No newline at end of file
diff --git a/apps/scandic-web/components/HotelReservation/SelectHotel/tracking.ts b/apps/scandic-web/components/HotelReservation/SelectHotel/tracking.ts
index e3714a227..3ba88ae33 100644
--- a/apps/scandic-web/components/HotelReservation/SelectHotel/tracking.ts
+++ b/apps/scandic-web/components/HotelReservation/SelectHotel/tracking.ts
@@ -23,9 +23,9 @@ export function getTracking(
hotelCity: string | undefined,
paramCity: string | undefined,
bookingCode?: string,
- isBookingCodeRateAvailable?: string,
+ isBookingCodeRateAvailable = false,
isRedemption?: boolean,
- isRedemptionAvailable?: boolean
+ isRedemptionAvailable = false
) {
const pageTrackingData: TrackingSDKPageData = {
channel: TrackingChannelEnum["hotelreservation"],
@@ -63,10 +63,10 @@ export function getTracking(
searchType: "destination",
bookingCode: bookingCode ?? "n/a",
bookingCodeAvailability: bookingCode
- ? isBookingCodeRateAvailable
+ ? isBookingCodeRateAvailable.toString()
: undefined,
rewardNight: isRedemption ? "yes" : "no",
- rewardNightAvailability: isRedemptionAvailable ? "true" : "false",
+ rewardNightAvailability: isRedemptionAvailable.toString(),
}
return {