CASH-3052: Group VAPS in adyen cart

This commit is contained in:
credelinghuys 2026-07-22 11:35:07 -04:00
parent 77c942203e
commit adb149f22e

View file

@ -24,7 +24,7 @@
<cart
ref="cart"
:damage="damageInfo"
:availableVaps="[]"
:availableVaps="availableVaps"
:allowItemRemoval="false"
v-model="lineItems"
servicePackageOptionsCmsName="ServicePackageTitle"
@ -598,6 +598,9 @@ export default {
lineItems() {
return deepClone(this.$store.getters.lineItems);
},
availableVaps() {
return this.$store.getters.order.lineItems?.vaps ?? [];
},
},
mounted() {