SSR-1175 Fix appointment details on payment-method not updating
This commit is contained in:
parent
69cf6ff743
commit
72555e5b7f
2 changed files with 2 additions and 2 deletions
|
|
@ -92,7 +92,7 @@ export default {
|
|||
return useMainStore().order.serviceLocation.appointmentType;
|
||||
},
|
||||
customerInfo() {
|
||||
return useMainStore().order.customer;
|
||||
return useMainStore().order.contactInfo;
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
|
|
|||
|
|
@ -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');
|
||||
|
|
|
|||
Loading…
Reference in a new issue