From acbca570d33e7d003621c406ef31eabfcb7b4736 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matilda=20Landstr=C3=B6m?= Date: Wed, 9 Jul 2025 09:22:29 +0000 Subject: [PATCH] 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) --- .../components/TempDesignSystem/MeetingRoomCard/utils.ts | 2 +- apps/scandic-web/types/enums/meetingRooms.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/scandic-web/components/TempDesignSystem/MeetingRoomCard/utils.ts b/apps/scandic-web/components/TempDesignSystem/MeetingRoomCard/utils.ts index ab6e88747..292c2deb5 100644 --- a/apps/scandic-web/components/TempDesignSystem/MeetingRoomCard/utils.ts +++ b/apps/scandic-web/components/TempDesignSystem/MeetingRoomCard/utils.ts @@ -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", }) diff --git a/apps/scandic-web/types/enums/meetingRooms.ts b/apps/scandic-web/types/enums/meetingRooms.ts index e3b50ded4..65f65b9c8 100644 --- a/apps/scandic-web/types/enums/meetingRooms.ts +++ b/apps/scandic-web/types/enums/meetingRooms.ts @@ -4,7 +4,7 @@ export enum RoomLighting { WindowsNaturalDaylightBlackoutFacilities = "WindowsNaturalDaylightBlackoutFacilities", NoWindows = "NoWindows", NoWindowsExcellentLighting = "NoWindowsExcellentLighting", - IndoorWindowsFacingHotel = "IndoorWindowsFacingHotel", + IndoorWindows = "IndoorWindows", IndoorWindowsExcellentLighting = "IndoorWindowsExcellentLighting", }