Merged in fix/SW-3161-meeting-room-N/A (pull request #2536)

fix(SW-3161): fix correct meeting room type mapping

* fix(SW-3161): fix correct room type mapping


Approved-by: Chuma Mcphoy (We Ahead)
This commit is contained in:
Matilda Landström
2025-07-09 09:22:29 +00:00
parent 899439ead8
commit acbca570d3
2 changed files with 2 additions and 2 deletions

View File

@@ -14,7 +14,7 @@ export function translateRoomLighting(option: string, intl: IntlShape) {
return intl.formatMessage({
defaultMessage: "Indoor windows and excellent lighting",
})
case RoomLighting.IndoorWindowsFacingHotel:
case RoomLighting.IndoorWindows:
return intl.formatMessage({
defaultMessage: "Indoor windows facing the hotel",
})

View File

@@ -4,7 +4,7 @@ export enum RoomLighting {
WindowsNaturalDaylightBlackoutFacilities = "WindowsNaturalDaylightBlackoutFacilities",
NoWindows = "NoWindows",
NoWindowsExcellentLighting = "NoWindowsExcellentLighting",
IndoorWindowsFacingHotel = "IndoorWindowsFacingHotel",
IndoorWindows = "IndoorWindows",
IndoorWindowsExcellentLighting = "IndoorWindowsExcellentLighting",
}