Merge branch 'develop' into feature/CSR-1390-style

This commit is contained in:
CarlNation 2023-10-17 22:52:25 -04:00
commit 52111388dd

View file

@ -2063,9 +2063,11 @@ export const actions = {
},
savePaymentType(context, isInsurance) {
context.commit(storeMutations.UPDATE_IS_INSURANCE, isInsurance);
if (isInsurance !== context.getters.payment.isInsurance) {
context.commit(storeMutations.RESET_PAYMENT_METHOD_CHOICE);
}
context.commit(storeMutations.RESET_PAYMENT_METHOD_CHOICE);
context.commit(storeMutations.UPDATE_IS_INSURANCE, isInsurance);
},
savePaymentMethodChoice(context, paymentMethod) {