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", }