From f9458dffa0cbe677d1901115c8d98a78ec944abb Mon Sep 17 00:00:00 2001 From: Michal Date: Sun, 22 Feb 2026 16:41:14 +0000 Subject: [PATCH] fix: remove unused Project interface from project.ts Co-Authored-By: Claude Opus 4.6 --- src/cli/src/commands/project.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/cli/src/commands/project.ts b/src/cli/src/commands/project.ts index 6f5a3a2..d333735 100644 --- a/src/cli/src/commands/project.ts +++ b/src/cli/src/commands/project.ts @@ -1,14 +1,6 @@ import { Command } from 'commander'; import type { ApiClient } from '../api-client.js'; -interface Project { - id: string; - name: string; - description: string; - ownerId: string; - createdAt: string; -} - interface Profile { id: string; name: string;