Removing dashes from phone number in register claim call
This commit is contained in:
parent
8c78204602
commit
97d703803d
1 changed files with 1 additions and 1 deletions
|
|
@ -392,7 +392,7 @@ export const useMainStore = defineStore({
|
|||
country: 'US' // TODO set from store
|
||||
},
|
||||
homePhone: {
|
||||
number: this.order.customer.phoneNumber
|
||||
number: this.order.customer.phoneNumber.replaceAll('-', '')
|
||||
}
|
||||
},
|
||||
caller: {
|
||||
|
|
|
|||
Loading…
Reference in a new issue