Skip to content

Commit

Permalink
fix timing issue from 1a94c5a
Browse files Browse the repository at this point in the history
  • Loading branch information
bbonf committed Oct 4, 2024
1 parent c237745 commit f98a570
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions babex-vue/src/components/invite/CallHome.vue
Original file line number Diff line number Diff line change
Expand Up @@ -89,14 +89,13 @@
status: 'CONFIRMED',
comment: comment.value,
}).success( () => {
if (confirmationForm.value.emailParticipant) {
emailDialog();
}
else {
complete();
}
});
if (confirmationForm.value.emailParticipant) {
emailDialog();
}
else {
complete();
}
});
}
Expand Down

0 comments on commit f98a570

Please sign in to comment.