From bd9e250ac9057547b9cf6cfa718a44ff136197b7 Mon Sep 17 00:00:00 2001 From: Bianca Widstam Date: Thu, 28 Aug 2025 14:15:18 +0000 Subject: [PATCH] Merged in fix/SW-2363-mobile-align-add-calendar-button (pull request #2728) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fix(SW-2363): align calendar and manage booking button in confirmation page * fix(SW-2363): align calendar and manage booking button in confirmation page Approved-by: Matilda Landström --- .../Header/Actions/AddToCalendarButton.tsx | 14 +++++++--- .../Header/Actions/ManageBooking.tsx | 27 +++++++++---------- 2 files changed, 23 insertions(+), 18 deletions(-) diff --git a/apps/scandic-web/components/HotelReservation/BookingConfirmation/Header/Actions/AddToCalendarButton.tsx b/apps/scandic-web/components/HotelReservation/BookingConfirmation/Header/Actions/AddToCalendarButton.tsx index 1adf042ae..037de0363 100644 --- a/apps/scandic-web/components/HotelReservation/BookingConfirmation/Header/Actions/AddToCalendarButton.tsx +++ b/apps/scandic-web/components/HotelReservation/BookingConfirmation/Header/Actions/AddToCalendarButton.tsx @@ -1,8 +1,8 @@ "use client" import { useIntl } from "react-intl" +import { Button } from "@scandic-hotels/design-system/Button" import { MaterialIcon } from "@scandic-hotels/design-system/Icons/MaterialIcon" -import { OldDSButton as Button } from "@scandic-hotels/design-system/OldDSButton" export default function AddToCalendarButton({ onPress, @@ -12,8 +12,16 @@ export default function AddToCalendarButton({ const intl = useIntl() return ( - + + {intl.formatMessage({ + defaultMessage: "Manage booking", + })} + ) }