From 3966cf59e77c950556e692f97977c8c3bbda9e50 Mon Sep 17 00:00:00 2001 From: Fredrik Thorsson Date: Wed, 4 Sep 2024 09:37:47 +0200 Subject: [PATCH] feat(SW-176): use currency input --- components/HotelReservation/HotelCard/index.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/components/HotelReservation/HotelCard/index.tsx b/components/HotelReservation/HotelCard/index.tsx index f5ac8b8f1..43cf56a03 100644 --- a/components/HotelReservation/HotelCard/index.tsx +++ b/components/HotelReservation/HotelCard/index.tsx @@ -88,7 +88,8 @@ export default async function HotelCard({ {intl.formatMessage({ id: "Public price from" })} - {price?.regularAmount} SEK / {intl.formatMessage({ id: "night" })} + {price?.regularAmount} {price?.currency} / + {intl.formatMessage({ id: "night" })} approx 280 eur @@ -98,7 +99,8 @@ export default async function HotelCard({ {intl.formatMessage({ id: "Member price from" })} - {price?.memberAmount} SEK / {intl.formatMessage({ id: "night" })} + {price?.memberAmount} {price?.currency} / + {intl.formatMessage({ id: "night" })} approx 280 eur