diff --git a/src/store/index.js b/src/store/index.js index 618ac0183..4b383a546 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -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) {