summaryrefslogtreecommitdiffhomepage
path: root/packages/app/src/context
diff options
context:
space:
mode:
authorKit Langton <[email protected]>2026-04-15 21:33:54 -0400
committerGitHub <[email protected]>2026-04-15 21:33:54 -0400
commitf7d4665e4091c88c2fde0f9db70d6333f83b86fd (patch)
tree6ba0c28c195c73bfe93e2db478592a5de1d39733 /packages/app/src/context
parentbbdbc107ae1f935f9694fc36b79c833643ee87a4 (diff)
downloadopencode-f7d4665e4091c88c2fde0f9db70d6333f83b86fd.tar.gz
opencode-f7d4665e4091c88c2fde0f9db70d6333f83b86fd.zip
fix: resolve oxlint warnings — suppress false positives, remove unused imports (#22687)
Diffstat (limited to 'packages/app/src/context')
-rw-r--r--packages/app/src/context/global-sync/queue.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/app/src/context/global-sync/queue.ts b/packages/app/src/context/global-sync/queue.ts
index c3468583b..5c228dac0 100644
--- a/packages/app/src/context/global-sync/queue.ts
+++ b/packages/app/src/context/global-sync/queue.ts
@@ -63,6 +63,7 @@ export function createRefreshQueue(input: QueueInput) {
}
} finally {
running = false
+ // oxlint-disable-next-line no-unsafe-finally -- intentional: early return skips schedule() when paused
if (input.paused()) return
if (root || queued.size) schedule()
}