Merge pull request #2112 from Safelite/Feature/Digital/CSR-2371

CSR-2371
This commit is contained in:
hiteshkumar87 2024-11-14 21:53:04 +05:30 committed by GitHub
commit 3928fac0d0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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)