diff --git a/apps/partner-sas/app/[lang]/layout.tsx b/apps/partner-sas/app/[lang]/layout.tsx
index 1ea0429aa..b5024fe8f 100644
--- a/apps/partner-sas/app/[lang]/layout.tsx
+++ b/apps/partner-sas/app/[lang]/layout.tsx
@@ -81,7 +81,7 @@ export default async function RootLayout(props: RootLayoutProps) {
window.dataLayer = window.dataLayer || []
`}
-
+
-
- {intl.formatMessage({
- defaultMessage: "Booking confirmation",
- })}
-
-
- {hotel.name}
-
+
+
+ {intl.formatMessage({
+ defaultMessage: "Booking confirmation",
+ })}
+
+
+
+ {hotel.name}
+
{text}
diff --git a/packages/booking-flow/lib/components/BookingWidget/BookingWidgetForm/FormContent/index.tsx b/packages/booking-flow/lib/components/BookingWidget/BookingWidgetForm/FormContent/index.tsx
index 4bdf47aa7..30d1c2082 100644
--- a/packages/booking-flow/lib/components/BookingWidget/BookingWidgetForm/FormContent/index.tsx
+++ b/packages/booking-flow/lib/components/BookingWidget/BookingWidgetForm/FormContent/index.tsx
@@ -7,8 +7,8 @@ import { useIntl } from "react-intl"
import { hotelreservation } from "@scandic-hotels/common/constants/routes/hotelReservation"
import { dt } from "@scandic-hotels/common/dt"
+import { Button } from "@scandic-hotels/design-system/Button"
import { MaterialIcon } from "@scandic-hotels/design-system/Icons/MaterialIcon"
-import { OldDSButton as Button } from "@scandic-hotels/design-system/OldDSButton"
import SkeletonShimmer from "@scandic-hotels/design-system/SkeletonShimmer"
import { Typography } from "@scandic-hotels/design-system/Typography"
import { SEARCH_TYPE_REDEMPTION } from "@scandic-hotels/trpc/constants/booking"
@@ -99,13 +99,7 @@ export default function FormContent({
-
-
+
@@ -213,10 +201,10 @@ export function BookingWidgetFormContentSkeleton() {
()
const roomsValue = useWatch({ name: "rooms" })
@@ -40,10 +42,15 @@ export default function GuestsRoomsPickerDialog({
})
// Disable add room if booking code is either voucher or corporate cheque, or reward night is enabled
const addRoomDisabledTextForSpecialRate = getValues(SEARCH_TYPE_REDEMPTION)
- ? intl.formatMessage({
- defaultMessage:
- "Multi-room booking is not available with reward night.",
- })
+ ? config.variant === "partner-sas"
+ ? intl.formatMessage({
+ defaultMessage:
+ "Multi-room booking is not available with EuroBonus points.",
+ })
+ : intl.formatMessage({
+ defaultMessage:
+ "Multi-room booking is not available with reward night.",
+ })
: getValues("bookingCode.value")?.toLowerCase().startsWith("vo") &&
intl.formatMessage({
defaultMessage:
diff --git a/packages/booking-flow/lib/components/BookingWidget/GuestsRoomsPicker/guests-rooms-picker.module.css b/packages/booking-flow/lib/components/BookingWidget/GuestsRoomsPicker/guests-rooms-picker.module.css
index 75bbfa976..9f3611391 100644
--- a/packages/booking-flow/lib/components/BookingWidget/GuestsRoomsPicker/guests-rooms-picker.module.css
+++ b/packages/booking-flow/lib/components/BookingWidget/GuestsRoomsPicker/guests-rooms-picker.module.css
@@ -90,7 +90,6 @@
}
.roomActionsButton {
- margin-left: auto;
color: var(--Base-Text-Accent);
}
diff --git a/packages/booking-flow/lib/components/SelectHotel/Filters/FilterContent/filterContent.module.css b/packages/booking-flow/lib/components/SelectHotel/Filters/FilterContent/filterContent.module.css
index d6b171c53..ecb95c7d3 100644
--- a/packages/booking-flow/lib/components/SelectHotel/Filters/FilterContent/filterContent.module.css
+++ b/packages/booking-flow/lib/components/SelectHotel/Filters/FilterContent/filterContent.module.css
@@ -8,6 +8,11 @@
gap: var(--Space-x3);
}
+.container .filterByTitle {
+ font-weight: 500;
+ color: var(--Text-Heading);
+}
+
.facilities {
padding-bottom: var(--Space-x3);
}
diff --git a/packages/booking-flow/lib/components/SelectHotel/Filters/FilterContent/index.tsx b/packages/booking-flow/lib/components/SelectHotel/Filters/FilterContent/index.tsx
index 22bc99ae4..1aaeafd21 100644
--- a/packages/booking-flow/lib/components/SelectHotel/Filters/FilterContent/index.tsx
+++ b/packages/booking-flow/lib/components/SelectHotel/Filters/FilterContent/index.tsx
@@ -2,7 +2,6 @@ import { useSearchParams } from "next/navigation"
import { useEffect, useState } from "react"
import { useIntl } from "react-intl"
-import Title from "@scandic-hotels/design-system/Title"
import { Typography } from "@scandic-hotels/design-system/Typography"
import {
@@ -116,11 +115,13 @@ export default function FilterContent({
return (