agentgui 1.0.686 → 1.0.687

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.686",
3
+ "version": "1.0.687",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "server.js",
@@ -2695,11 +2695,6 @@ class AgentGUIClient {
2695
2695
 
2696
2696
  this._showSkeletonLoading(conversationId);
2697
2697
 
2698
- // Disable send button during skeleton loading to prevent race conditions
2699
- if (this.ui.sendButton) {
2700
- this.ui.sendButton.disabled = true;
2701
- }
2702
-
2703
2698
  let fullData;
2704
2699
  try {
2705
2700
  fullData = await window.wsClient.rpc('conv.full', { id: conversationId, chunkLimit: 50 });