Skip to content

Commit 23d98bb

Browse files
committed
fix: add missing await
Signed-off-by: Hamza <hamzamahjoubi221@gmail.com>
1 parent a84f80f commit 23d98bb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/mixins/CircleActionsMixin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ export default {
126126
this.loadingAction = true
127127

128128
try {
129-
this.$store.dispatch('deleteCircle', this.circle.id)
129+
await this.$store.dispatch('deleteCircle', this.circle.id)
130130
} catch (error) {
131131
showError(t('contacts', 'Unable to delete the team'))
132132
} finally {

0 commit comments

Comments
 (0)