diff --git a/apps/scandic-web/components/HotelReservation/EnterDetails/Tracking/tracking.ts b/apps/scandic-web/components/HotelReservation/EnterDetails/Tracking/tracking.ts index e3ebe3533..598a101e2 100644 --- a/apps/scandic-web/components/HotelReservation/EnterDetails/Tracking/tracking.ts +++ b/apps/scandic-web/components/HotelReservation/EnterDetails/Tracking/tracking.ts @@ -254,9 +254,7 @@ function calcTotalRoomPrice(rooms: Room[], isMember: boolean) { // When it comes special rates, only redemption has additional price and that should be added // other special rates like voucher, corporateCheck should be added as 0 according to Priyanka if ("redemption" in room.roomRate) { - return ( - room.roomRate.redemption.requestedPrice?.additionalPricePerStay ?? 0 - ) + return room.roomRate.redemption.localPrice?.additionalPricePerStay ?? 0 } else if ( "corporateCheck" in room.roomRate || "voucher" in room.roomRate