diff --git a/src/layouts/mobile-details/mobile-details.vue b/src/layouts/mobile-details/mobile-details.vue index f97455482..bc0173bd3 100644 --- a/src/layouts/mobile-details/mobile-details.vue +++ b/src/layouts/mobile-details/mobile-details.vue @@ -7,10 +7,11 @@

- + +
@@ -53,7 +54,6 @@ import loadingModal from "@/fmg-components/loading-modal/loading-modal.vue"; import { Form } from "vee-validate"; import mobileAddressQuestions from "@/layouts/mobile-details/mobile-address-questions/mobile-address-questions"; import vehicleProtectedQuestion from "@/layouts/service-location/mobile-location-modal-questions/vehicle-protected-question/vehicle-protected-question"; -import reviewBlock from "@/layouts/payment-method/review-dropdown/review-block/review-block"; import store from "@/store"; //Supporting files import { fetchCmsContentForPage } from "@/helpers/cms-content-helper"; @@ -153,8 +153,11 @@ export default { }, }, computed: { - AppointmentTimeAndDate() { - return this.getCmsContent("AppointmentTimeAndDate", "BodyText"); + AppointmentDateAndTime() { + return this.getCmsContent("AppointmentDateAndTime", "Text"); + }, + AppointmentTimeOfService() { + return this.getCmsContent("AppointmentDateAndTime", "Text"); }, }, components: { @@ -166,7 +169,14 @@ export default { funnelSubHeader, Form, loadingModal, - reviewBlock, }, }; + +