diff --git a/surfsense_web/components/chat-comments/comment-composer/comment-composer.tsx b/surfsense_web/components/chat-comments/comment-composer/comment-composer.tsx index c5007e764..e2ab26aee 100644 --- a/surfsense_web/components/chat-comments/comment-composer/comment-composer.tsx +++ b/surfsense_web/components/chat-comments/comment-composer/comment-composer.tsx @@ -1,6 +1,6 @@ "use client"; -import { Send, X } from "lucide-react"; +import { ArrowUp, Send, X } from "lucide-react"; import { useCallback, useEffect, useRef, useState } from "react"; import { Button } from "@/components/ui/button"; import { Popover, PopoverAnchor, PopoverContent } from "@/components/ui/popover"; @@ -86,6 +86,7 @@ export function CommentComposer({ onCancel, autoFocus = false, initialValue = "", + compact = false, }: CommentComposerProps) { const [displayContent, setDisplayContent] = useState(initialValue); const [insertedMentions, setInsertedMentions] = useState([]); @@ -257,44 +258,46 @@ export function CommentComposer({ }, [adjustTextareaHeight]); return ( -
- !open && closeMentionPicker()} - modal={false} - > - -