(conversation: Conversation)
| 83 | }; |
| 84 | |
| 85 | const handleEditConversation = (conversation: Conversation) => { |
| 86 | setUpdateConversationModalContext(conversation); |
| 87 | }; |
| 88 | |
| 89 | const handleDeleteConversation = (conversation: Conversation) => { |
| 90 | conversationStore.clearConversation((item) => item.id !== conversation.id); |
nothing calls this directly
no outgoing calls
no test coverage detected