fix: unused deps parameter in project command

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Michal
2026-02-22 18:42:16 +00:00
parent 99c9c5d404
commit 856fb5b5f7

View File

@@ -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")');