agentgui 1.0.724 → 1.0.725

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.724",
3
+ "version": "1.0.725",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "server.js",
@@ -2838,13 +2838,6 @@ class AgentGUIClient {
2838
2838
  const frag = document.createDocumentFragment();
2839
2839
  let userMsgIdx = 0;
2840
2840
 
2841
- if (hasMoreChunks && sessionOrder.length > 0) {
2842
- const firstChunkTime = chunks[0].created_at;
2843
- while (userMsgIdx < userMessages.length && userMessages[userMsgIdx].created_at < firstChunkTime) {
2844
- userMsgIdx++;
2845
- }
2846
- }
2847
-
2848
2841
  sessionOrder.forEach((sessionId) => {
2849
2842
  const sessionChunkList = sessionChunks[sessionId];
2850
2843
  const sessionStart = sessionChunkList[0].created_at;