From 2a0deaa225cd9d28c297b4f5fa8bc4ed051f6e0e Mon Sep 17 00:00:00 2001 From: Michal Date: Sun, 22 Feb 2026 18:42:16 +0000 Subject: [PATCH] fix: unused deps parameter in project command Co-Authored-By: Claude Opus 4.6 --- src/cli/src/commands/project.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/src/commands/project.ts b/src/cli/src/commands/project.ts index a4a1249..2696ba4 100644 --- a/src/cli/src/commands/project.ts +++ b/src/cli/src/commands/project.ts @@ -6,7 +6,7 @@ export interface ProjectCommandDeps { log: (...args: unknown[]) => void; } -export function createProjectCommand(deps: ProjectCommandDeps): Command { +export function createProjectCommand(_deps: ProjectCommandDeps): Command { const cmd = new Command('project') .alias('proj') .description('Project-specific actions (create with "create project", list with "get projects")');