CSR-1952: include promo cart items into selected package cart items

This commit is contained in:
Adam Caouette 2024-02-07 18:24:35 -05:00
parent b1b884c398
commit 5e09c22e33

View file

@ -167,6 +167,12 @@ export default {
});
});
if (this.promoCartItems) {
this.promoCartItems.forEach((promoCartItem) => {
vapsCartItemsForSelectedPackage.push(promoCartItem);
});
}
return vapsCartItemsForSelectedPackage;
},
getCmsContentForVapsType(vapsType) {