diff --git a/apps/scandic-web/components/HotelReservation/MyStay/ReferenceCard/Actions/NotUpcoming/index.tsx b/apps/scandic-web/components/HotelReservation/MyStay/ReferenceCard/Actions/NotUpcoming/index.tsx index 12825b9e4..7793f7b3f 100644 --- a/apps/scandic-web/components/HotelReservation/MyStay/ReferenceCard/Actions/NotUpcoming/index.tsx +++ b/apps/scandic-web/components/HotelReservation/MyStay/ReferenceCard/Actions/NotUpcoming/index.tsx @@ -26,7 +26,7 @@ export default function NotUpcoming() { const bookingData: BookingWidgetSearchData = { hotelId: mainRoom.hotelId, - rooms: [mainRoom, ...rooms].map((room) => ({ + rooms: rooms.map((room) => ({ adults: room.adults, childrenInRoom: room.childrenInRoom, })),