diff --git a/apps/scandic-web/components/HotelReservation/BookingConfirmation/Rooms/Room/index.tsx b/apps/scandic-web/components/HotelReservation/BookingConfirmation/Rooms/Room/index.tsx index 311337a27..b388e3dc6 100644 --- a/apps/scandic-web/components/HotelReservation/BookingConfirmation/Rooms/Room/index.tsx +++ b/apps/scandic-web/components/HotelReservation/BookingConfirmation/Rooms/Room/index.tsx @@ -145,15 +145,8 @@ export default function Room({ })}
- {intl.formatMessage( - { - defaultMessage: "{checkOutDate} from {checkOutTime}", - }, - { - checkOutDate: toDate.format(longDateFormat[lang]), - checkOutTime: checkOutTime, - } - )} + {/* eslint-disable-next-line formatjs/no-literal-string-in-jsx */} + {`${toDate.format(longDateFormat[lang])}, ${checkOutTime}`}