mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-15 10:05:14 +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
|
|
@ -278,7 +278,7 @@ function extractToolResultText(result: unknown): string {
|
|||
return JSON.stringify(result);
|
||||
}
|
||||
|
||||
function formatToolArgsForSlack(toolName: string, args: Record<string, unknown>): string {
|
||||
function formatToolArgsForSlack(_toolName: string, args: Record<string, unknown>): string {
|
||||
const lines: string[] = [];
|
||||
|
||||
for (const [key, value] of Object.entries(args)) {
|
||||
|
|
|
|||
|
|
@ -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