From 6f9fb4b6203773f48568f13e420fac758d85fe0c Mon Sep 17 00:00:00 2001 From: Tobias Johansson Date: Mon, 2 Dec 2024 10:54:24 +0100 Subject: [PATCH] fix(SW-1043): wrong font size/styling on prices in summary --- .../EnterDetails/Summary/UI/index.tsx | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/components/HotelReservation/EnterDetails/Summary/UI/index.tsx b/components/HotelReservation/EnterDetails/Summary/UI/index.tsx index 455692248..5b01a1c01 100644 --- a/components/HotelReservation/EnterDetails/Summary/UI/index.tsx +++ b/components/HotelReservation/EnterDetails/Summary/UI/index.tsx @@ -107,12 +107,12 @@ export default function SummaryUI({
{roomType} - + {intl.formatNumber(roomPrice.local.price, { currency: roomPrice.local.currency, style: "currency", })} - +
{intl.formatMessage( @@ -156,12 +156,12 @@ export default function SummaryUI({
- + {intl.formatNumber(parseInt(roomPackage.localPrice.price), { currency: roomPackage.localPrice.currency, style: "currency", })} - + )) : null} @@ -174,12 +174,12 @@ export default function SummaryUI({ - + {intl.formatNumber(0, { currency: roomPrice.local.currency, style: "currency", })} - + ) : null} @@ -188,12 +188,12 @@ export default function SummaryUI({ {intl.formatMessage({ id: "No breakfast" })} - + {intl.formatNumber(0, { currency: roomPrice.local.currency, style: "currency", })} - + ) : null} {breakfast ? ( @@ -201,12 +201,12 @@ export default function SummaryUI({ {intl.formatMessage({ id: "Breakfast buffet" })} - + {intl.formatNumber(parseInt(breakfast.localPrice.totalPrice), { currency: breakfast.localPrice.currency, style: "currency", })} - + ) : null}