remove Insurance check on shouldHideRecalibration getter.
This commit is contained in:
hiteshkumar87 2024-11-14 21:35:10 +05:30
parent 4529b8eb12
commit e026dd387b
2 changed files with 6 additions and 6 deletions

View file

@ -398,8 +398,12 @@ export default {
}, },
methods: { methods: {
isDisabled(options) { isDisabled(options) {
if (!options.length || store.getters.payment?.insuranceCoverage?.isVerified || (store.getters.order.payment?.isInsurance && if (
getFunnelCookie().HasDelayedClaimRegistration)) { !options.length ||
store.getters.payment?.insuranceCoverage?.isVerified ||
(store.getters.order.payment?.isInsurance &&
getFunnelCookie().HasDelayedClaimRegistration)
) {
return true; return true;
} else { } else {
return false; return false;

View file

@ -826,10 +826,6 @@ export const getters = {
order = state.order; order = state.order;
} }
if (order.payment.isInsurance) {
return false;
}
return ( return (
experimentMixin.methods experimentMixin.methods
.getSettingValue(experimentSettings.RECAL_PRICE_REMOVE) .getSettingValue(experimentSettings.RECAL_PRICE_REMOVE)