HOTFIX: Send SMS using mobile instead phone #914

Merged
jsegarra merged 2 commits from hotFix-customer_sms into master 2024-11-12 11:13:33 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 6355993c14 - Show all commits

View File

@ -28,7 +28,7 @@ const showSmsDialog = () => {
quasar.dialog({
component: VnSmsDialog,
componentProps: {
phone: $props.customer.phone || $props.customer.mobile,
phone: $props.customer.mobile || $props.customer.phone,
promise: sendSms,
},
});