From 6650287da21b8751c17bf76428ed89333fe6b4f9 Mon Sep 17 00:00:00 2001 From: kumarabhirup Date: Sat, 21 Feb 2026 11:04:20 -0800 Subject: [PATCH] fix: prefix unused key variable in activateGatewayFallback --- apps/web/lib/subagent-runs.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/lib/subagent-runs.ts b/apps/web/lib/subagent-runs.ts index 5c7f53623fe..8d226cc85d8 100644 --- a/apps/web/lib/subagent-runs.ts +++ b/apps/web/lib/subagent-runs.ts @@ -367,7 +367,7 @@ export function isSubagentRunning(sessionKey: string): boolean { */ export function activateGatewayFallback(): void { const reg = getRegistry(); - for (const [key, run] of reg.runs) { + for (const [_key, run] of reg.runs) { if (run.status === "running" && !run._subscribeProcess) { startSubagentSubscribeStream(run); }