From 68e1cbcf61b8475f1361e4845b7dc67141cd1fee Mon Sep 17 00:00:00 2001 From: Scott Kiener Date: Thu, 7 Nov 2024 11:26:26 -0500 Subject: [PATCH] CSR-2322 | Fix shouldHideRecalibration response --- src/store/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/index.js b/src/store/index.js index 22b9c4776..81aa5ad62 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -826,7 +826,7 @@ export const getters = { return ( experimentMixin.methods .getSettingValue(experimentSettings.RECAL_PRICE_REMOVE) - ?.toLowerCase() === "true" && getters.isRecalibrationOnOrder + ?.toLowerCase() === "true" && getters.isRecalibrationOnOrder(state) ); }, areRearWipersOnOrder: (state) => {