From 5f227f78fd466d697cdf51a4580dab671b02cabb Mon Sep 17 00:00:00 2001 From: AdamCaouetteSafelite Date: Tue, 2 Sep 2025 08:10:51 -0400 Subject: [PATCH] CASH-1450: appointment details fixes --- .../review-dropdown/review-dropdown.vue | 29 +++++++++++++++++-- .../customer-review/customer-review.vue | 3 +- 2 files changed, 29 insertions(+), 3 deletions(-) diff --git a/src/layouts/payment-method/review-dropdown/review-dropdown.vue b/src/layouts/payment-method/review-dropdown/review-dropdown.vue index 3aec6383b..9b568d48f 100644 --- a/src/layouts/payment-method/review-dropdown/review-dropdown.vue +++ b/src/layouts/payment-method/review-dropdown/review-dropdown.vue @@ -15,6 +15,31 @@
+ + +
+ + + +
+ + + +
+ + + +
+ + + +
@@ -119,9 +145,8 @@ export default { customerReview, damageReview, scheduleReview, - serviceLocationReview, - servicePackageReview, vehicleReview, + serviceLocationReview, }, }; diff --git a/src/layouts/payment-method/review-dropdown/review-sections/customer-review/customer-review.vue b/src/layouts/payment-method/review-dropdown/review-sections/customer-review/customer-review.vue index 2fd82c716..0aa384682 100644 --- a/src/layouts/payment-method/review-dropdown/review-sections/customer-review/customer-review.vue +++ b/src/layouts/payment-method/review-dropdown/review-sections/customer-review/customer-review.vue @@ -21,7 +21,8 @@ export default { }, computed: { displayContent() { - return [this.fullName, this.email, this.phoneNumber, this.smsOptIn]; + return [this.email, this.phoneNumber, this.smsOptIn]; + // return [this.fullName, this.email, this.phoneNumber, this.smsOptIn]; // prior to Heritage parity }, header() { return this.getCmsContent(this.cmsWidgetName, "HeaderText");