bugfix
This commit is contained in:
parent
c0672a0abc
commit
58f55554f5
1 changed files with 2 additions and 2 deletions
|
|
@ -1660,8 +1660,8 @@ export const useMainStore = defineStore({
|
|||
order.contactInfo.firstName = data?.customer?.firstName;
|
||||
order.contactInfo.lastName = data?.customer?.lastName;
|
||||
order.contactInfo.emailAddress = data?.customer?.emailAddress;
|
||||
order.contactInfo.extension = data.customer.homePhone?.slice(10);
|
||||
order.contactInfo.homePhone = data.customer.homePhone?.slice(0, 10);
|
||||
order.contactInfo.extension = data?.customer?.homePhone?.slice(10);
|
||||
order.contactInfo.homePhone = data?.customer?.homePhone?.slice(0, 10);
|
||||
order.contactInfo.servicePhone = data?.customer?.servicePhone;
|
||||
order.contactInfo.alternativePhone = data?.customer?.alternativePhone;
|
||||
order.contactInfo.requestTextUpdates = data?.customer?.isSmsOptIn;
|
||||
|
|
|
|||
Loading…
Reference in a new issue