From 3c9493220ca750458bfa8f17477ba0fb31844195 Mon Sep 17 00:00:00 2001 From: AdamCaouetteSafelite Date: Wed, 17 Sep 2025 07:48:56 -0400 Subject: [PATCH] CASH-1499: bug fix adding a needed save promos to store --- src/layouts/payment-method/payment-method.vue | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/layouts/payment-method/payment-method.vue b/src/layouts/payment-method/payment-method.vue index eb75cf207..323070d39 100644 --- a/src/layouts/payment-method/payment-method.vue +++ b/src/layouts/payment-method/payment-method.vue @@ -542,6 +542,16 @@ export default { getPromoCodeWithoutBundleIdentifier(x.promoCode) ); + // SAVE PROMO CHANGES TO STORE + this.dispatchStoreAction( + storeActions.SAVE_ACTIVE_AND_OR_INACTIVE_PROMOS, + { + activePromos: this.lineItems.promos, + inactivePromos: this.inactivePromos, + }, + false + ); + this.$refs.loadingModal.hideModal(); }, getIsRecalAckOptInFromStore() {