CSR-2405 recal text corrections
CSR-2405 recal text corrections. the recal text was being driven by the store getter which is only updated on page transition. Changed it to use the page scoped version of insurance selected.
This commit is contained in:
parent
efb3e12459
commit
990f68fa15
1 changed files with 2 additions and 1 deletions
|
|
@ -428,7 +428,8 @@ export default {
|
|||
);
|
||||
},
|
||||
shouldHideRecalibration() {
|
||||
return store.getters.shouldHideRecalibration;
|
||||
if (this.isInsuranceSelected) return false;
|
||||
return (experimentMixin.methods.getSettingValue(experimentSettings.RECAL_PRICE_REMOVE)?.toLowerCase() === "true" && this.isRecalibrationOnOrder);
|
||||
},
|
||||
showAfterpayBanner() {
|
||||
return (
|
||||
|
|
|
|||
Loading…
Reference in a new issue