(conversation: Conversation)
| 42 | }; |
| 43 | |
| 44 | const handleConversationSelect = (conversation: Conversation) => { |
| 45 | conversationStore.setCurrentConversationId(conversation.id); |
| 46 | if (layoutStore.isMobileView) { |
| 47 | layoutStore.toggleSidebar(false); |
| 48 | } |
| 49 | }; |
| 50 | |
| 51 | const handleEditConversation = (conversation: Conversation) => { |
| 52 | setUpdateConversationModalContext(conversation); |