CSR-2166: EVEN MORE temporary debugging indications for dev

This commit is contained in:
Adam Caouette 2024-09-23 16:06:25 -04:00
parent 5e7bc8dc13
commit 784705041a
2 changed files with 4 additions and 1 deletions

View file

@ -18,6 +18,7 @@
<hr />
<p style="color: blue;">thresholdToUse: {{ thresholdToUse }}</p>
<p style="color: blue;">externalSource: {{ externalSource }}</p>
<p style="color: blue;">typeof recalSettingValue: {{ typeof recalSettingValue }}</p>
<p style="color: blue;">recalSettingValue: {{ recalSettingValue }}</p>
<hr />
@ -409,7 +410,7 @@ export default {
shouldHideRecalibration() {
const recalSettingValue = experimentMixin.methods.getSettingValue(
experimentSettings.RECAL_PRICE_REMOVE
);
).toLowerCase() === "true";
return recalSettingValue;
},
showAfterpayBanner() {

View file

@ -3,7 +3,9 @@
<p style="color: red;">isInsuranceSelected: {{ isInsuranceSelected }}</p>
<p style="color: red;">typeof isRecalibrationOnOrder: {{ typeof isRecalibrationOnOrder }}</p>
<p style="color: red;">isRecalibrationOnOrder: {{ isRecalibrationOnOrder }}</p>
<p style="color: red;">typeof shouldHideRecalibration: {{ typeof shouldHideRecalibration }}</p>
<p style="color: red;">shouldHideRecalibration: {{ shouldHideRecalibration }}</p>