agentgui 1.0.167 → 1.0.168

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentgui",
3
- "version": "1.0.167",
3
+ "version": "1.0.168",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "server.js",
@@ -1288,12 +1288,11 @@ class AgentGUIClient {
1288
1288
  }
1289
1289
 
1290
1290
  const { conversation } = await response.json();
1291
- this.state.currentConversation = conversation;
1292
1291
 
1293
1292
  await this.loadConversations();
1294
1293
 
1295
1294
  if (window.conversationManager) {
1296
- window.conversationManager.loadConversations();
1295
+ await window.conversationManager.loadConversations();
1297
1296
  window.conversationManager.select(conversation.id);
1298
1297
  }
1299
1298