fix(BOOK-558): Fixed issue where city is not prefilled inside the booking widget

Approved-by: Matilda Landström
This commit is contained in:
Erik Tiekstra
2025-11-25 13:29:02 +00:00
parent bd21b92dbe
commit e84f2f55ac

View File

@@ -16,7 +16,7 @@ export default async function BookingWidgetDestinationCityPage(
const bookingWidgetSearchParams = {
bookingCode: bookingCode ?? "",
city: pageData?.city.name ?? "",
city: pageData?.city.cityIdentifier ?? "",
}
const booking = parseBookingWidgetSearchParams(bookingWidgetSearchParams)