diff --git a/src/components/ChatViewer.tsx b/src/components/ChatViewer.tsx index 60eb711..6749b5f 100644 --- a/src/components/ChatViewer.tsx +++ b/src/components/ChatViewer.tsx @@ -481,6 +481,9 @@ export function ChatViewer({ // State for send in progress (prevents double-sends) const [isSending, setIsSending] = useState(false); + // State for tooltip open (for mobile tap support) + const [tooltipOpen, setTooltipOpen] = useState(false); + // Handle sending messages with error handling const handleSend = async ( content: string, @@ -710,9 +713,12 @@ export function ChatViewer({
{headerPrefix} - + -