From 9c78d6a98af82e4053b73b6bd431b2d715514975 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20J=C3=A4derberg?= Date: Mon, 27 Oct 2025 14:55:00 +0000 Subject: [PATCH] Merged in fix/my-stay-bookingflowconfig-missing (pull request #3020) fix: wrap MyStay component in BookingFlowConfig to handle RSC problem where config is not set * fix: wrap MyStay component in BookingFlowConfig to handle RSC problem where config is not set Approved-by: Bianca Widstam --- .../(live)/(public)/hotelreservation/my-stay/page.tsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/my-stay/page.tsx b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/my-stay/page.tsx index 4eedbbc71..e4cec7202 100644 --- a/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/my-stay/page.tsx +++ b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/my-stay/page.tsx @@ -1,3 +1,7 @@ +import { BookingFlowConfig } from "@scandic-hotels/booking-flow/BookingFlowConfig" + +import { bookingFlowConfig } from "@/constants/bookingFlowConfig" + import MyStay from "@/components/HotelReservation/MyStay" import { setLang } from "@/i18n/serverContext" @@ -14,9 +18,9 @@ export default async function MyStayPage( const refId = searchParams.RefId return ( - <> + - + ) }