diff --git a/src/constants/error-messages.js b/src/constants/error-messages.js
index ace5e564..98d19bf2 100644
--- a/src/constants/error-messages.js
+++ b/src/constants/error-messages.js
@@ -26,7 +26,7 @@ const errorMessages = Object.freeze({
SERVICE_ZIP_REQUIRED: 'ZIP code is required',
SERVICE_ZIP_FORMAT: 'Invalid ZIP, please enter a new ZIP (5 characters)',
MOBILE_SERVICE_ZIP_FORMAT: 'Invalid ZIP code',
- NO_SERVICE_IN_ZIP: (zip) => `We're sorry, but we don't offer service in ${zip} at this time.`,
+ NO_SERVICE_IN_AREA: (area) => `We're sorry, but we don't offer service in ${area} at this time.`,
PROVIDER_REQUIRED: 'Please select a provider.',
INVALID_ZIP: 'The ZIP you entered was invalid. Please enter a valid ZIP.',
ZIP_CODE_NOT_SERVICED_FOR_VEHICLE: 'We do not currently offer glass service for your vehicle in this ZIP code. Please try another ZIP code.',
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 d192a27f..f14c51c4 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
@@ -9,7 +9,7 @@
ref="buttonQuestion"
v-model="selectedValues"
customButtonQuestionId="appointmentTypeQuestion"
- :answers="answersFromCms"
+ :answers="answersToDisplay"
:groupName="groupName"
:suppressError="suppressError"
:validationRules="validationRules"
@@ -45,8 +45,15 @@ export default {
return this.getCmsContent(this.cmsWidgetName, 'QuestionText');
},
answersFromCms() {
- const retCms = this.getCmsContent(this.cmsWidgetName, 'Answers');
- return retCms;
+ return this.getCmsContent(this.cmsWidgetName, 'Answers');
+ },
+ answersToDisplay() {
+ return this.answersFromCms
+ ? this.answersFromCms.filter((answer) => (
+ (answer.Name === AppointmentTypeStrings.IN_SHOP)
+ || (answer.Name === AppointmentTypeStrings.MOBILE)
+ ))
+ : [];
},
selectedValues: {
get() {
diff --git a/src/layouts/service-location/service-location.vue b/src/layouts/service-location/service-location.vue
index 9cc5f595..ab684447 100644
--- a/src/layouts/service-location/service-location.vue
+++ b/src/layouts/service-location/service-location.vue
@@ -13,18 +13,6 @@
+ class="m-0 text-body">