()
| 34 | }; |
| 35 | |
| 36 | const handleCreateConversation = () => { |
| 37 | if (!currentConnectionCtx) { |
| 38 | conversationStore.createConversation(); |
| 39 | } else { |
| 40 | conversationStore.createConversation(currentConnectionCtx.connection.id, currentConnectionCtx.database?.name); |
| 41 | } |
| 42 | }; |
| 43 | |
| 44 | const handleConversationSelect = (conversation: Conversation) => { |
| 45 | conversationStore.setCurrentConversationId(conversation.id); |
nothing calls this directly
no outgoing calls
no test coverage detected