diff --git a/apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/AddAncillaryFlowModal/PriceDetails/index.tsx b/apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/AddAncillaryFlowModal/PriceDetails/index.tsx index c03696851..cc87b8e2f 100644 --- a/apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/AddAncillaryFlowModal/PriceDetails/index.tsx +++ b/apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/AddAncillaryFlowModal/PriceDetails/index.tsx @@ -77,7 +77,7 @@ export default function PriceDetails({ title: `${selectedAncillary.title} / ${intl.formatMessage({ defaultMessage: "Adult", })}`, - totalPrice: breakfastData.priceAdult, + totalPrice: breakfastData.priceAdult * breakfastData.nrOfAdults, currency: breakfastData.currency, quantityWithCard: breakfastData.nrOfAdults * breakfastData.nrOfNights, }, @@ -88,7 +88,7 @@ export default function PriceDetails({ title: `${selectedAncillary.title} / ${intl.formatMessage({ defaultMessage: "Children", })} 4-12`, - totalPrice: breakfastData.priceChild, + totalPrice: breakfastData.priceChild * breakfastData.nrOfPayingChildren, currency: breakfastData.currency, quantityWithCard: breakfastData.nrOfPayingChildren * breakfastData.nrOfNights, diff --git a/apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/AddAncillaryFlowModal/Steps/SelectQuantityStep/index.tsx b/apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/AddAncillaryFlowModal/Steps/SelectQuantityStep/index.tsx index 9c3b40b7a..024390be8 100644 --- a/apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/AddAncillaryFlowModal/Steps/SelectQuantityStep/index.tsx +++ b/apps/scandic-web/components/HotelReservation/MyStay/Ancillaries/AddAncillaryFlow/AddAncillaryFlowModal/Steps/SelectQuantityStep/index.tsx @@ -160,7 +160,7 @@ function BreakfastInfo() {