()
| 30 | const connection = connectionStore.getConnectionById(conversationStore.getConversationById(message.conversationId)?.connectionId || ""); |
| 31 | |
| 32 | const copyMessage = () => { |
| 33 | navigator.clipboard.writeText(message.content); |
| 34 | toast.success("Copied to clipboard"); |
| 35 | }; |
| 36 | |
| 37 | const deleteMessage = (message: Message) => { |
| 38 | messageStore.clearMessage((item) => item.id !== message.id); |
nothing calls this directly
no outgoing calls
no test coverage detected