diff --git a/src/layouts/quote/quote.vue b/src/layouts/quote/quote.vue index df93bd338..3f0da0131 100644 --- a/src/layouts/quote/quote.vue +++ b/src/layouts/quote/quote.vue @@ -436,8 +436,15 @@ export default { (!this.isRecalibrationOnOrder || !this.shouldHideRecalibration) ); }, + isRecalPriceRemove() { + return ( + experimentMixin.methods + .getSettingValue(experimentSettings.RECAL_PRICE_REMOVE) + ?.toLowerCase() === "true" + ); + }, showRecalDisclaimer() { - return this.isRecalibrationOnOrder && this.shouldHideRecalibration; + return this.isRecalibrationOnOrder && this.isRecalPriceRemove; }, }, methods: { diff --git a/src/store/index.js b/src/store/index.js index 9ee0e6e19..ca10f8f62 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -826,6 +826,10 @@ export const getters = { order = state.order; } + if (order.payment.isInsurance) { + return false; + } + return ( experimentMixin.methods .getSettingValue(experimentSettings.RECAL_PRICE_REMOVE)