fix(SW-2608): add night on breakfast modal
This commit is contained in:
committed by
Michael Zetterberg
parent
77c9206a94
commit
1438007d89
@@ -437,12 +437,16 @@ function BreakfastPriceList() {
|
||||
<div>
|
||||
<div className={styles.breakfastPriceList}>
|
||||
<Typography variant="Body/Paragraph/mdBold">
|
||||
{/* eslint-disable-next-line formatjs/no-literal-string-in-jsx */}
|
||||
<span>{`${breakfastData.priceAdult} ${breakfastData.currency} / ${intl.formatMessage(
|
||||
{
|
||||
defaultMessage: "Adult",
|
||||
}
|
||||
)}`}</span>
|
||||
<span>
|
||||
{intl.formatMessage(
|
||||
{
|
||||
defaultMessage: "{price} / Adult / night",
|
||||
},
|
||||
{
|
||||
price: `${breakfastData.priceAdult} ${breakfastData.currency}`,
|
||||
}
|
||||
)}
|
||||
</span>
|
||||
</Typography>
|
||||
|
||||
{breakfastData.nrOfPayingChildren > 0 && (
|
||||
|
||||
Reference in New Issue
Block a user