()
| 23 | }, [currentConversationId]); |
| 24 | |
| 25 | const loadConversations = async () => { |
| 26 | try { |
| 27 | const convs = await api.listConversations(); |
| 28 | setConversations(convs); |
| 29 | } catch (error) { |
| 30 | console.error('Failed to load conversations:', error); |
| 31 | } |
| 32 | }; |
| 33 | |
| 34 | const loadConversation = async (id) => { |
| 35 | try { |
no outgoing calls
no test coverage detected