diff options
| author | Kit Langton <[email protected]> | 2026-04-15 22:01:53 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-04-16 02:01:53 +0000 |
| commit | cce05c16658a39d091f658bdb53dcce1e88c66d0 (patch) | |
| tree | bedd5e0c1d9105854e4dbf8ec0c6f7e1337df4c6 /packages/slack | |
| parent | 34213d444681a8953c5693bd01dd754c4e79a30b (diff) | |
| download | opencode-cce05c16658a39d091f658bdb53dcce1e88c66d0.tar.gz opencode-cce05c16658a39d091f658bdb53dcce1e88c66d0.zip | |
fix: clean up 49 unused variables, catch params, and stale imports (#22695)
Diffstat (limited to 'packages/slack')
| -rw-r--r-- | packages/slack/src/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/slack/src/index.ts b/packages/slack/src/index.ts index 123710aa4..85d685129 100644 --- a/packages/slack/src/index.ts +++ b/packages/slack/src/index.ts @@ -27,7 +27,7 @@ const sessions = new Map<string, { client: any; server: any; sessionId: string; const part = event.properties.part if (part.type === "tool") { // Find the session for this tool update - for (const [sessionKey, session] of sessions.entries()) { + for (const [_sessionKey, session] of sessions.entries()) { if (session.sessionId === part.sessionID) { handleToolUpdate(part, session.channel, session.thread) break |
