Merged in fix/SW-3484-campaign-remove-breakfast-message-chip (pull request #2820)

fix(SW-3484): remove breakfast message in the booking code chip for campaign

* fix(SW-3484): remove breakfast message in the booking code chip for campaign


Approved-by: Matilda Landström
This commit is contained in:
Bianca Widstam
2025-09-17 08:11:10 +00:00
parent 886f1b2f11
commit 1e566e59f7
5 changed files with 9 additions and 45 deletions

View File

@@ -91,8 +91,6 @@ export default function PriceDetailsTable({
const departue = dt(toDate).locale(lang).format(longDateFormat[lang])
const duration = ` ${arrival} - ${departue} (${nightsMsg})`
const isAllBreakfastIncluded = rooms.every((room) => room.breakfastIncluded)
const allPricesIsDiscounted = rooms.every((room) => {
if (!("regular" in room.price)) {
return false
@@ -223,7 +221,6 @@ export default function PriceDetailsTable({
<BookingCodeRow
isCampaignRate={isCampaignRate}
isBreakfastIncluded={isAllBreakfastIncluded}
bookingCode={bookingCode}
/>
</Tbody>