fix: biome linter warnings (unused parameters)

This commit is contained in:
Mario Zechner 2025-11-26 18:04:37 +01:00
parent 213bc4df1c
commit bfe7df6a49
2 changed files with 2 additions and 2 deletions

View file

@ -70,7 +70,7 @@ await validateSandbox(sandbox);
// Track active agent runs per channel
const activeRuns = new Map<string, AgentRunner>();
async function handleMessage(ctx: SlackContext, source: "channel" | "dm"): Promise<void> {
async function handleMessage(ctx: SlackContext, _source: "channel" | "dm"): Promise<void> {
const channelId = ctx.message.channel;
const messageText = ctx.message.text.toLowerCase().trim();