SSR-1175 Fix appointment details on payment-method not updating

This commit is contained in:
Josh Dassinger 2024-04-29 10:39:26 -05:00
parent 69cf6ff743
commit 72555e5b7f
2 changed files with 2 additions and 2 deletions

View file

@ -92,7 +92,7 @@ export default {
return useMainStore().order.serviceLocation.appointmentType;
},
customerInfo() {
return useMainStore().order.customer;
return useMainStore().order.contactInfo;
}
},
methods: {

View file

@ -33,7 +33,7 @@ export default {
return this.customer?.emailAddress;
},
phoneNumber() {
return this.customer?.phoneNumber;
return this.customer?.servicePhone;
},
smsOptIn() {
return this.getCmsContent(this.cmsWidgetName, 'SubheaderText');