diff --git a/src/layouts/schedule-page/schedule-page.vue b/src/layouts/schedule-page/schedule-page.vue index ead54253..14c14db8 100644 --- a/src/layouts/schedule-page/schedule-page.vue +++ b/src/layouts/schedule-page/schedule-page.vue @@ -40,7 +40,6 @@ class="text-link-small" :activeAppointmentType="activeAppointmentType" :isMobileView="isMobileView" - :mobileZipCode="mobileZipCodeOverride" :showTimeSlotError="showDatePickerError" :customSelectableDatesCallback="getAvailableDatesMethod" @dateSelected="dateSelectedFromPicker" diff --git a/src/layouts/schedule-page/service-location/service-location.vue b/src/layouts/schedule-page/service-location/service-location.vue index 864acddf..88b08cb1 100644 --- a/src/layouts/schedule-page/service-location/service-location.vue +++ b/src/layouts/schedule-page/service-location/service-location.vue @@ -134,7 +134,6 @@ import serviceZipQuestion from '@/layouts/schedule-page/service-location/service import widgetFields from '@/constants/cms-widget-fields'; const RECAL_MODAL_REF_NAME = 'RecalModal'; -const SITE_FOOTER_REF_NAME = 'siteFooter'; export default { name: 'service-location', @@ -174,14 +173,10 @@ export default { militaryBaseWarningExpanded: false, availabilityRating: null, RECAL_MODAL_REF_NAME, - SITE_FOOTER_REF_NAME, errorMessages }; }, computed: { - answersFromCms() { - return this.getCmsContent('ServiceTypeQuestionWidget', 'Answers'); - }, appointmentQuestionText() { return this.getCmsContent('WhereWouldYouLikeServiceWidget', widgetFields.CONTENT_GROUP_WIDGET.HEADER_TEXT); }, @@ -197,9 +192,6 @@ export default { displayMobileFeeDisclaimer() { return this.mainStore.isNoComp || this.mainStore.isITAC; }, - displayNoShopsAlert() { - return !this.isBigTruck && !this.isServiceableInshop && !this.isServiceableMobile; - }, displayRecalibrationWarning() { return this.requiresInshopRecalibration; }, @@ -262,12 +254,6 @@ export default { ? this.navigationScenarios.CLICKED_BACK_CANNOT_REACH_TPA_FLOW : this.navigationScenarios.CLICKED_BACK_CAN_REACH_TPA_FLOW; }, - questionText() { - return this.getCmsContent( - 'ServiceTypeQuestionWidget', - 'QuestionText' - ); - }, recalibrationRequired() { return this.mainStore.hasRecalibrationPart; }, @@ -493,9 +479,6 @@ export default { setGlassFeeItems(newGlassFeeItems) { this.mainStore.updateGlassFees(newGlassFeeItems); }, - setMobileFeePart(mobileFeePart) { - this.mobileFeePart = mobileFeePart; - }, setMobileProviderNumber(providerNumber) { this.mobileProviderNumber = providerNumber; },