diff --git a/src/layouts/service-location/service-location.vue b/src/layouts/service-location/service-location.vue index 7f8430f04..69b4f4926 100644 --- a/src/layouts/service-location/service-location.vue +++ b/src/layouts/service-location/service-location.vue @@ -221,18 +221,7 @@ export default { return this.isServiceableMobile && !this.isServiceableInshop; }, displayNoShopsAlert() { - let mobileAvailable; - if (this.IsRecalibrationServiceableMobile == null) { - mobileAvailable = this.isGlassServiceableMobile; - } else { - mobileAvailable = - this.isGlassServiceableMobile && this.isRecalibrationServiceableMobile; - } - - const inshopAvailable = - this.isGlassServiceableInshop && this.isRecalibrationServiceableInshop; - - return !inshopAvailable && !mobileAvailable; + return !this.isServiceableInshop && !this.isServiceableMobile; }, }, methods: {