diff --git a/src/layouts/service-location/appointment-type-question/appointment-type-question.vue b/src/layouts/service-location/appointment-type-question/appointment-type-question.vue index dc7dadb2..56f02e2a 100644 --- a/src/layouts/service-location/appointment-type-question/appointment-type-question.vue +++ b/src/layouts/service-location/appointment-type-question/appointment-type-question.vue @@ -51,8 +51,8 @@ export default { return this.getCmsContent(this.cmsWidgetName, 'Answers'); }, answersToDisplay() { - const shouldShowMobile = this.isServiceableMobile && this.isITAC; - const shouldShowMobileNotITAC = this.isServiceableMobile && !this.isITAC; + const shouldShowMobile = this.isServiceableMobile && this.isItacOrNoComp; + const shouldShowMobileNotITAC = this.isServiceableMobile && !this.isItacOrNoComp; const shouldShowInshop = this.isServiceableInshop; const shouldShowDropoff = this.isServiceableInshop && !useMainStore().damage.isRepair; return this.answersFromCms @@ -75,6 +75,9 @@ export default { isITAC() { return useMainStore().policy.isITAC; }, + isItacOrNoComp() { + return useMainStore().policy.isITAC || useMainStore().policy.noCoverage; + }, isMobileOnly() { return this.isServiceableMobile && !this.isServiceableInshop; } diff --git a/src/layouts/service-location/mobile-location-modal-questions/mobile-location-modal-questions.vue b/src/layouts/service-location/mobile-location-modal-questions/mobile-location-modal-questions.vue index 3829dd76..73698e45 100644 --- a/src/layouts/service-location/mobile-location-modal-questions/mobile-location-modal-questions.vue +++ b/src/layouts/service-location/mobile-location-modal-questions/mobile-location-modal-questions.vue @@ -31,7 +31,7 @@ @@ -172,6 +172,9 @@ export default { isITAC() { return useMainStore().policy.isITAC; }, + isItacOrNoComp() { + return useMainStore().policy.isITAC || useMainStore().policy.noCoverage; + }, mobileLocationLinkPromptText() { return this.getCmsContent(this.linkWidgetName, 'HeaderText'); }, @@ -298,6 +301,8 @@ export default {