diff --git a/src/components/MessageInput.tsx b/src/components/MessageInput.tsx index c682cf0..0776d1d 100644 --- a/src/components/MessageInput.tsx +++ b/src/components/MessageInput.tsx @@ -2,7 +2,6 @@ import { cn } from '@/lib/utils'; import { ArrowUp } from 'lucide-react'; import { useEffect, useRef, useState } from 'react'; import TextareaAutosize from 'react-textarea-autosize'; -import CopilotToggle from './MessageInputActions/Copilot'; import AttachSmall from './MessageInputActions/AttachSmall'; import { useChat } from '@/lib/hooks/useChat'; @@ -78,11 +77,16 @@ const MessageInput = () => { placeholder="Ask a follow-up" /> {mode === 'single' && ( -
- + + )} + {mode === 'multi' && ( +
+
)} - {mode === 'multi' && ( -
- -
- - -
-
- )} ); };