diff --git a/frontend/src/components/editor-ai/EditorAIPanel.tsx b/frontend/src/components/editor-ai/EditorAIPanel.tsx index feda2b1b..10285ff9 100644 --- a/frontend/src/components/editor-ai/EditorAIPanel.tsx +++ b/frontend/src/components/editor-ai/EditorAIPanel.tsx @@ -6,8 +6,6 @@ import { ChatTab } from './ChatTab' import { SuggestionsTab } from './SuggestionsTab' import type { EditorAIChatMessage, AISuggestion } from '@/types' -const PANEL_WIDTH = 380 - interface EditorAIPanelProps { isOpen: boolean onClose: () => void @@ -25,8 +23,6 @@ interface EditorAIPanelProps { type Tab = 'chat' | 'suggestions' -export { PANEL_WIDTH } - export function EditorAIPanel({ isOpen, onClose, @@ -49,10 +45,8 @@ export function EditorAIPanel({ return (