diff options
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 |
