agentgui 1.0.233 → 1.0.234

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/static/app.js +0 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentgui",
3
- "version": "1.0.233",
3
+ "version": "1.0.234",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "server.js",
package/static/app.js CHANGED
@@ -173,7 +173,6 @@ class GMGUIApp {
173
173
 
174
174
  handleEvent(event) {
175
175
  if (event.type === 'message_created') {
176
- this.addMessageToDisplay(event.message);
177
176
  this.handleMessageReceived(event.message);
178
177
  } else if (event.type === 'conversations_updated') {
179
178
  this.fetchConversations().then(() => this.renderChatHistory());