Removing dashes from phone number in register claim call

This commit is contained in:
brydon1 2023-07-13 12:12:37 -04:00
parent 8c78204602
commit 97d703803d

View file

@ -392,7 +392,7 @@ export const useMainStore = defineStore({
country: 'US' // TODO set from store country: 'US' // TODO set from store
}, },
homePhone: { homePhone: {
number: this.order.customer.phoneNumber number: this.order.customer.phoneNumber.replaceAll('-', '')
} }
}, },
caller: { caller: {