diff --git a/app/[lang]/(live)/(public)/hotelreservation/(standard)/step/page.module.css b/app/[lang]/(live)/(public)/hotelreservation/(standard)/step/page.module.css
index 748b572ce..d807e2633 100644
--- a/app/[lang]/(live)/(public)/hotelreservation/(standard)/step/page.module.css
+++ b/app/[lang]/(live)/(public)/hotelreservation/(standard)/step/page.module.css
@@ -1,11 +1,11 @@
.container {
display: grid;
gap: var(--Spacing-x3) var(--Spacing-x9);
- width: var(--max-width-page);
}
.content {
- margin: var(--Spacing-x3) var(--Spacing-x2) 0;
+ width: var(--max-width-page);
+ margin: var(--Spacing-x3) auto 0;
}
.summary {
@@ -17,6 +17,8 @@
@media screen and (min-width: 1367px) {
.container {
+ width: var(--max-width-page);
+
grid-template-columns: 1fr 340px;
grid-template-rows: auto 1fr;
margin: var(--Spacing-x5) auto 0;
@@ -24,6 +26,7 @@
}
.content {
+ width: 100%;
margin: var(--Spacing-x3) 0 0;
}
diff --git a/components/HotelReservation/EnterDetails/Details/JoinScandicFriendsCard/index.tsx b/components/HotelReservation/EnterDetails/Details/JoinScandicFriendsCard/index.tsx
index 2048f114e..830f882d3 100644
--- a/components/HotelReservation/EnterDetails/Details/JoinScandicFriendsCard/index.tsx
+++ b/components/HotelReservation/EnterDetails/Details/JoinScandicFriendsCard/index.tsx
@@ -81,27 +81,29 @@ export default function JoinScandicFriendsCard({
))}
-
- {intl.formatMessage(
- {
- id: "signup.terms",
- },
- {
- termsLink: (str) => (
-
- {str}
-
- ),
- }
- )}
-
+
+
+ {intl.formatMessage(
+ {
+ id: "signup.terms",
+ },
+ {
+ termsLink: (str) => (
+
+ {str}
+
+ ),
+ }
+ )}
+
+
)
}
diff --git a/components/HotelReservation/EnterDetails/Summary/UI/index.tsx b/components/HotelReservation/EnterDetails/Summary/UI/index.tsx
index 3b7705990..5e61ef155 100644
--- a/components/HotelReservation/EnterDetails/Summary/UI/index.tsx
+++ b/components/HotelReservation/EnterDetails/Summary/UI/index.tsx
@@ -104,13 +104,10 @@ export default function SummaryUI({
{roomType}
- {intl.formatMessage(
- { id: "{amount} {currency}" },
- {
- amount: intl.formatNumber(roomPrice.local.price),
- currency: roomPrice.local.currency,
- }
- )}
+ {intl.formatNumber(roomPrice.local.price, {
+ currency: roomPrice.local.currency,
+ style: "currency",
+ })}
@@ -156,13 +153,10 @@ export default function SummaryUI({
- {intl.formatMessage(
- { id: "{amount} {currency}" },
- {
- amount: roomPackage.localPrice.price,
- currency: roomPackage.localPrice.currency,
- }
- )}
+ {intl.formatNumber(parseInt(roomPackage.localPrice.price), {
+ currency: roomPackage.localPrice.currency,
+ style: "currency",
+ })}
))
@@ -177,10 +171,10 @@ export default function SummaryUI({
- {intl.formatMessage(
- { id: "{amount} {currency}" },
- { amount: "0", currency: roomPrice.local.currency }
- )}
+ {intl.formatNumber(0, {
+ currency: roomPrice.local.currency,
+ style: "currency",
+ })}
) : null}
@@ -191,10 +185,10 @@ export default function SummaryUI({
{intl.formatMessage({ id: "No breakfast" })}