diff --git a/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/copilot/components/copilot-modal/copilot-modal.tsx b/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/copilot/components/copilot-modal/copilot-modal.tsx index c9454e4dc2..4837f99330 100644 --- a/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/copilot/components/copilot-modal/copilot-modal.tsx +++ b/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/copilot/components/copilot-modal/copilot-modal.tsx @@ -1,17 +1,25 @@ 'use client' import { type KeyboardEvent, useEffect, useRef } from 'react' -import { ArrowUp, Bot, ChevronDown, MessageSquarePlus, MoreHorizontal, Trash2, X } from 'lucide-react' +import { + ArrowUp, + Bot, + ChevronDown, + MessageSquarePlus, + MoreHorizontal, + Trash2, + X, +} from 'lucide-react' import { Button } from '@/components/ui/button' -import { Input } from '@/components/ui/input' import { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuTrigger, } from '@/components/ui/dropdown-menu' +import { Input } from '@/components/ui/input' +import type { CopilotChat } from '@/lib/copilot-api' import { createLogger } from '@/lib/logs/console-logger' -import { type CopilotChat } from '@/lib/copilot-api' const logger = createLogger('CopilotModal') @@ -221,22 +229,17 @@ export function CopilotModal({ `} {/* Header with chat title, management, and close button */} -