From a19af79bb7fbfe160fc26b69484620861e8f46aa Mon Sep 17 00:00:00 2001 From: Alex Humphries Date: Fri, 29 May 2026 15:01:25 -0400 Subject: [PATCH] INSR-9816: Null handling improvement --- .../review-sections/customer-review/customer-review.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 34c3fb46..6bc585ba 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 @@ -38,9 +38,9 @@ export default { }, customValueMap() { return { - homePhone: this.mainStore.contactInfo.homePhone, + homePhone: this.mainStore.contactInfo.homePhone ?? '', extension: this.mainStore.contactInfo.extension ?? '', - emailAddress: this.mainStore.contactInfo.emailAddress + emailAddress: this.mainStore.contactInfo.emailAddress ?? '' } } }