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 ?? '' } } }