diff --git a/frontend/src/app/(dashboard)/projects/[id]/threads/[threadId]/page.tsx b/frontend/src/app/(dashboard)/projects/[id]/threads/[threadId]/page.tsx index 5b54fac0..21779109 100644 --- a/frontend/src/app/(dashboard)/projects/[id]/threads/[threadId]/page.tsx +++ b/frontend/src/app/(dashboard)/projects/[id]/threads/[threadId]/page.tsx @@ -13,8 +13,6 @@ import { ChatInput } from '@/components/chat-input'; // Define a type for the params to make React.use() work properly type ThreadParams = { id: string; threadId: string }; - - interface ApiMessage { role: string; content: string;