From b6c97230cce7c2249791ffad603c4fd39036d224 Mon Sep 17 00:00:00 2001 From: mateo Date: Thu, 17 Sep 2026 20:06:41 +0000 Subject: [PATCH] chore(ui): remove unused access-groups type interfaces Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> --- .../access-groups/_components/types.ts | 32 ------------------- 1 file changed, 32 deletions(-) diff --git a/ui/litellm-dashboard/src/app/(dashboard)/access-groups/_components/types.ts b/ui/litellm-dashboard/src/app/(dashboard)/access-groups/_components/types.ts index 2414e5b8f31..a9f9f7375ff 100644 --- a/ui/litellm-dashboard/src/app/(dashboard)/access-groups/_components/types.ts +++ b/ui/litellm-dashboard/src/app/(dashboard)/access-groups/_components/types.ts @@ -12,35 +12,3 @@ export interface AccessGroup { updatedAt: string; updatedBy: string; } - -export interface Model { - id: string; - name: string; - provider: string; -} - -export interface McpServer { - id: string; - name: string; - endpoint: string; -} - -export interface Agent { - id: string; - name: string; - type: string; -} - -export interface AccessGroupKey { - id: string; - alias: string; - status: string; - createdAt: string; -} - -export interface AccessGroupTeam { - id: string; - name: string; - members: number; - role: string; -}