Skip to content

Commit

Permalink
fix: add missing async keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
trobonox committed May 17, 2023
1 parent 7d2098f commit 3ab0afa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/kanban/[id].vue
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ onMounted(async () => {
});
});

onBeforeUnmount(() => {
onBeforeUnmount(async () => {
document.removeEventListener("keydown", keyDownListener);
emitter.emit("closeKanbanPage");

Expand Down

0 comments on commit 3ab0afa

Please sign in to comment.