(conversation: Conversation)
| 76 | }; |
| 77 | |
| 78 | const handleConversationClick = (conversation: Conversation) => { |
| 79 | conversationStore.setCurrentConversationId(conversation.id); |
| 80 | if (layoutStore.isMobileView) { |
| 81 | layoutStore.toggleSidebar(false); |
| 82 | } |
| 83 | }; |
| 84 | |
| 85 | const handleEditConversation = (conversation: Conversation) => { |
| 86 | setUpdateConversationModalContext(conversation); |
nothing calls this directly
no outgoing calls
no test coverage detected