From 39d97b307079116d649620eeb6fe7821ce09b2f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matilda=20Landstr=C3=B6m?= Date: Thu, 22 May 2025 10:07:07 +0000 Subject: [PATCH] Merged in fix/en-dash (pull request #2164) fix(SW-2760): revert removal of en-dash * fix(SW-2760): revert removal of en-dash Approved-by: Michael Zetterberg --- .../SidePeeks/WellnessAndExercise/Facility/index.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/WellnessAndExercise/Facility/index.tsx b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/WellnessAndExercise/Facility/index.tsx index 531d3398d..054ce7498 100644 --- a/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/WellnessAndExercise/Facility/index.tsx +++ b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/WellnessAndExercise/Facility/index.tsx @@ -60,12 +60,12 @@ export default async function Facility({ data }: FacilityProps) {

{ordinaryOpeningTimes.alwaysOpen ? intl.formatMessage({ - defaultMessage: "Monday-Friday: Always open", + defaultMessage: "Monday–Friday: Always open", }) : intl.formatMessage( { defaultMessage: - "Monday-Friday: {openingTime}-{closingTime}", + "Monday–Friday: {openingTime}–{closingTime}", }, { openingTime: ordinaryOpeningTimes.openingTime, @@ -76,12 +76,12 @@ export default async function Facility({ data }: FacilityProps) {

{weekendOpeningTimes.alwaysOpen ? intl.formatMessage({ - defaultMessage: "Saturday-Sunday: Always open", + defaultMessage: "Saturday–Sunday: Always open", }) : intl.formatMessage( { defaultMessage: - "Saturday-Sunday: {openingTime}-{closingTime}", + "Saturday–Sunday: {openingTime}–{closingTime}", }, { openingTime: weekendOpeningTimes.openingTime,