(e: React.ChangeEvent<HTMLTextAreaElement>)
| 170 | }, [input, adjustTextareaHeight]) |
| 171 | |
| 172 | const handleChange = (e: React.ChangeEvent<HTMLTextAreaElement>) => { |
| 173 | onChange(e) |
| 174 | adjustTextareaHeight() |
| 175 | } |
| 176 | |
| 177 | const handleKeyDown = (e: React.KeyboardEvent) => { |
| 178 | if ((e.metaKey || e.ctrlKey) && e.key === "Enter") { |
nothing calls this directly
no outgoing calls
no test coverage detected