()
| 68 | ); |
| 69 | |
| 70 | const handleCreateConversation = () => { |
| 71 | if (!currentConnectionCtx) { |
| 72 | conversationStore.createConversation(); |
| 73 | } else { |
| 74 | conversationStore.createConversation(currentConnectionCtx.connection.id, currentConnectionCtx.database?.name); |
| 75 | } |
| 76 | }; |
| 77 | |
| 78 | const handleConversationClick = (conversation: Conversation) => { |
| 79 | conversationStore.setCurrentConversationId(conversation.id); |
nothing calls this directly
no outgoing calls
no test coverage detected