fix: clear timeout

This commit is contained in:
Ben Allfree 2023-01-23 15:08:57 +00:00
parent 778405bb22
commit 06528c7d55

View File

@ -39,5 +39,8 @@ export const safeCatch = <TIn extends any[], TOut>(
}
throw e
})
.finally(() => {
clearTimeout(tid)
})
}
}