(e)
| 208 | }; |
| 209 | |
| 210 | const handleKeyDown = (e) => { |
| 211 | if (e.key === 'Enter' && !e.shiftKey) { |
| 212 | e.preventDefault(); |
| 213 | handleSend(); |
| 214 | } |
| 215 | }; |
| 216 | |
| 217 | const handleFeedback = (type, offset) => { |
| 218 | setFeedbackModal({ chatId: sessionId, messageOffset: offset, type }); |
nothing calls this directly
no test coverage detected