chore(task): do not try to cancel debounce handler

The debounce handler cannot be canceled like that. Because the variable just gets destroyed when we unmount the component, no need to clean it up explicitely.
This commit is contained in:
kolaente 2025-12-17 22:26:32 +01:00
parent 512af1d0f4
commit cc7bf76091
1 changed files with 0 additions and 1 deletions

View File

@ -738,7 +738,6 @@ onMounted(() => {
onBeforeUnmount(() => {
document.removeEventListener('keydown', saveTaskViaHotkey)
debouncedMutationHandler.cancel()
})
onBeforeRouteLeave(async () => {