mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-20 10:01:21 +00:00
fix: biome linter warnings (unused parameters)
This commit is contained in:
parent
213bc4df1c
commit
bfe7df6a49
2 changed files with 2 additions and 2 deletions
|
|
@ -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();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue