(e: React.ChangeEvent<HTMLTextAreaElement>)
| 26 | }, []); |
| 27 | |
| 28 | const handleChange = (e: React.ChangeEvent<HTMLTextAreaElement>) => { |
| 29 | setValue(e.target.value); |
| 30 | }; |
| 31 | |
| 32 | const handleSend = async () => { |
| 33 | let conversation = conversationStore.getConversationById(conversationStore.currentConversationId); |
nothing calls this directly
no outgoing calls
no test coverage detected