Merge pull request #2845 from Safelite/feature/bugfix/CASH-1499-test

CASH-1499: bug fix adding a needed save promos to store
This commit is contained in:
AdamCaouetteSafelite 2025-09-17 10:25:41 -04:00 committed by GitHub
commit 1b3d4b1a10
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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() {