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: {
isDisabled(options) {
if (!options.length || store.getters.payment?.insuranceCoverage?.isVerified || (store.getters.order.payment?.isInsurance &&
getFunnelCookie().HasDelayedClaimRegistration)) {
if (
!options.length ||
store.getters.payment?.insuranceCoverage?.isVerified ||
(store.getters.order.payment?.isInsurance &&
getFunnelCookie().HasDelayedClaimRegistration)
) {
return true;
} else {
return false;

View file

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