()
| 1222 | } |
| 1223 | |
| 1224 | const closeResponse = () => { |
| 1225 | cleanupCalledTools() |
| 1226 | setLoading(false) |
| 1227 | setUserInput('') |
| 1228 | setUploadedFiles([]) |
| 1229 | setTimeout(() => { |
| 1230 | inputRef.current?.focus() |
| 1231 | scrollToBottom() |
| 1232 | }, 100) |
| 1233 | } |
| 1234 | // Prevent blank submissions and allow for multiline input |
| 1235 | const handleEnter = (e) => { |
| 1236 | // Check if IME composition is in progress |
no test coverage detected