diff --git a/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/RestaurantBar/RestaurantBarItem/index.tsx b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/RestaurantBar/RestaurantBarItem/index.tsx index 1eb811d2b..441ea86ee 100644 --- a/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/RestaurantBar/RestaurantBarItem/index.tsx +++ b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/RestaurantBar/RestaurantBarItem/index.tsx @@ -5,7 +5,6 @@ import ButtonLink from "@/components/ButtonLink" import Image from "@/components/Image" import OpeningHours from "@/components/OpeningHours" import Link from "@/components/TempDesignSystem/Link" -import Body from "@/components/TempDesignSystem/Text/Body" import { getIntl } from "@/i18n" import styles from "./restaurantBarItem.module.css" @@ -50,7 +49,9 @@ export default async function RestaurantBarItem({ ))} ) : null} -
{content.texts.descriptions.short} +{content.texts.descriptions.short}
++ {ordinaryOpeningTimes.alwaysOpen + ? intl.formatMessage({ + defaultMessage: "Monday–Friday: Always open", + }) + : intl.formatMessage( + { + defaultMessage: + "Monday–Friday: {openingTime}–{closingTime}", + }, + { + openingTime: ordinaryOpeningTimes.openingTime, + closingTime: ordinaryOpeningTimes.closingTime, + } + )} +
++ {weekendOpeningTimes.alwaysOpen + ? intl.formatMessage({ + defaultMessage: "Saturday–Sunday: Always open", + }) + : intl.formatMessage( + { + defaultMessage: + "Saturday–Sunday: {openingTime}–{closingTime}", + }, + { + openingTime: weekendOpeningTimes.openingTime, + closingTime: weekendOpeningTimes.closingTime, + } + )} +
+{shortDescription}
+