From 468ed7422116938387ea881e475087614f799045 Mon Sep 17 00:00:00 2001 From: Christel Westerberg Date: Fri, 7 Nov 2025 07:28:09 +0000 Subject: [PATCH] Merged in fix/STAY-70 (pull request #3098) fix: make sure bookings with code can be changed * fix: make sure bookings with code can be changed Approved-by: Bianca Widstam --- .../ManageStay/Actions/ChangeDates/Steps/index.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/apps/scandic-web/components/HotelReservation/MyStay/ReferenceCard/Actions/Upcoming/ManageStay/Actions/ChangeDates/Steps/index.tsx b/apps/scandic-web/components/HotelReservation/MyStay/ReferenceCard/Actions/Upcoming/ManageStay/Actions/ChangeDates/Steps/index.tsx index dcb5a0280..cc2f3ac53 100644 --- a/apps/scandic-web/components/HotelReservation/MyStay/ReferenceCard/Actions/Upcoming/ManageStay/Actions/ChangeDates/Steps/index.tsx +++ b/apps/scandic-web/components/HotelReservation/MyStay/ReferenceCard/Actions/Upcoming/ManageStay/Actions/ChangeDates/Steps/index.tsx @@ -49,7 +49,13 @@ export default function Steps({ closeModal }: ChangeDatesStepsProps) { setNoAvailability(false) const data = await utils.hotel.availability.myStay.fetch({ - booking: { fromDate, hotelId, room, toDate }, + booking: { + fromDate, + hotelId, + room, + toDate, + bookingCode: room.bookingCode, + }, lang, })