CSR-2166: fix for null exception error
This commit is contained in:
parent
784705041a
commit
00f34b7c3c
1 changed files with 1 additions and 1 deletions
|
|
@ -410,7 +410,7 @@ export default {
|
||||||
shouldHideRecalibration() {
|
shouldHideRecalibration() {
|
||||||
const recalSettingValue = experimentMixin.methods.getSettingValue(
|
const recalSettingValue = experimentMixin.methods.getSettingValue(
|
||||||
experimentSettings.RECAL_PRICE_REMOVE
|
experimentSettings.RECAL_PRICE_REMOVE
|
||||||
).toLowerCase() === "true";
|
)?.toLowerCase() === "true";
|
||||||
return recalSettingValue;
|
return recalSettingValue;
|
||||||
},
|
},
|
||||||
showAfterpayBanner() {
|
showAfterpayBanner() {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue