aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/utils/PendingTask.ts
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2023-02-25 01:26:11 +0100
committerLibravatar Kristóf Marussy <kristof@marussy.com>2023-02-26 13:27:37 +0100
commit9336850f69f8130e792f8f3763f4e4a951da1921 (patch)
tree80b81e3f726704eff460553409a79b414609fb41 /subprojects/frontend/src/utils/PendingTask.ts
parentrefactor: rename PartialInterpretation adapter (diff)
downloadrefinery-9336850f69f8130e792f8f3763f4e4a951da1921.tar.gz
refinery-9336850f69f8130e792f8f3763f4e4a951da1921.tar.zst
refinery-9336850f69f8130e792f8f3763f4e4a951da1921.zip
chore(deps): bump dependencies
Diffstat (limited to 'subprojects/frontend/src/utils/PendingTask.ts')
-rw-r--r--subprojects/frontend/src/utils/PendingTask.ts1
1 files changed, 0 insertions, 1 deletions
diff --git a/subprojects/frontend/src/utils/PendingTask.ts b/subprojects/frontend/src/utils/PendingTask.ts
index fd52cef1..d0b24c1f 100644
--- a/subprojects/frontend/src/utils/PendingTask.ts
+++ b/subprojects/frontend/src/utils/PendingTask.ts
@@ -20,7 +20,6 @@ export default class PendingTask<T> {
20 ) { 20 ) {
21 this.resolveCallback = resolveCallback; 21 this.resolveCallback = resolveCallback;
22 this.rejectCallback = rejectCallback; 22 this.rejectCallback = rejectCallback;
23 // @ts-expect-error See https://github.com/mobxjs/mobx/issues/3582 on `@types/node` pollution
24 this.timeout = setTimeout(() => { 23 this.timeout = setTimeout(() => {
25 if (!this.resolved) { 24 if (!this.resolved) {
26 this.reject(new TimeoutError()); 25 this.reject(new TimeoutError());