From c6d4cf32caa1dea7a504956b98e1cb26ac339283 Mon Sep 17 00:00:00 2001 From: Bill Richardson Date: Tue, 31 Mar 2026 14:13:43 -0400 Subject: [PATCH] readability null means car doesnt check recal --- src/helpers/service-location-helper.js | 2 +- src/layouts/schedule-page/service-location/service-location.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/helpers/service-location-helper.js b/src/helpers/service-location-helper.js index 2c074a3a..5da94148 100644 --- a/src/helpers/service-location-helper.js +++ b/src/helpers/service-location-helper.js @@ -79,7 +79,7 @@ export function isServiceableMobileWithData(isGlassServiceableMobile, isRecalibr return false; } - if (isRecalibrationServiceableMobile !== null) { + if (isRecalibrationServiceableMobile === true || isRecalibrationServiceableMobile === false) { return ( isGlassServiceableMobile && isRecalibrationServiceableMobile diff --git a/src/layouts/schedule-page/service-location/service-location.vue b/src/layouts/schedule-page/service-location/service-location.vue index 227c20bb..7476acd1 100644 --- a/src/layouts/schedule-page/service-location/service-location.vue +++ b/src/layouts/schedule-page/service-location/service-location.vue @@ -252,7 +252,7 @@ export default { return false; } - if (this.isRecalibrationServiceableMobile !== null) { + if (this.isRecalibrationServiceableMobile === true || this.isRecalibrationServiceableMobile === false) { return ( this.isGlassServiceableMobile && this.isRecalibrationServiceableMobile