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;
|
return useMainStore().order.serviceLocation.appointmentType;
|
||||||
},
|
},
|
||||||
customerInfo() {
|
customerInfo() {
|
||||||
return useMainStore().order.customer;
|
return useMainStore().order.contactInfo;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@ export default {
|
||||||
return this.customer?.emailAddress;
|
return this.customer?.emailAddress;
|
||||||
},
|
},
|
||||||
phoneNumber() {
|
phoneNumber() {
|
||||||
return this.customer?.phoneNumber;
|
return this.customer?.servicePhone;
|
||||||
},
|
},
|
||||||
smsOptIn() {
|
smsOptIn() {
|
||||||
return this.getCmsContent(this.cmsWidgetName, 'SubheaderText');
|
return this.getCmsContent(this.cmsWidgetName, 'SubheaderText');
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue