diff --git a/components/chat-input.tsx b/components/chat-input.tsx index b14a279..d0cce3c 100644 --- a/components/chat-input.tsx +++ b/components/chat-input.tsx @@ -9,7 +9,6 @@ import { Send, RotateCcw, Image as ImageIcon, - X, History, } from "lucide-react"; import { ButtonWithTooltip } from "@/components/button-with-tooltip"; @@ -84,14 +83,6 @@ export function ChatInput({ } }; - // Clear all files - const clearFiles = () => { - if (fileInputRef.current) { - fileInputRef.current.value = ""; - } - onFileChange([]); - }; - // Trigger file input click const triggerFileInput = () => { fileInputRef.current?.click();