()
| 91 | }; |
| 92 | |
| 93 | const scrollToBottom = () => { |
| 94 | if (!hasUserScrolled) { |
| 95 | const endRef = isFullscreen ? fullscreenMessagesEndRef.current : outputEndRef.current; |
| 96 | if (endRef) { |
| 97 | endRef.scrollIntoView({ behavior: 'smooth' }); |
| 98 | } |
| 99 | } |
| 100 | }; |
| 101 | |
| 102 | // Load agent run on mount |
| 103 | useEffect(() => { |
no outgoing calls
no test coverage detected