Skip to content

Commit 92f664a

Browse files
recuu-pfegclaude
andcommitted
fix: revert chat_stream initial content to empty string
The "..." text was unnecessary since the streaming bubble itself shows bouncing dots via the frontend. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 36b1051 commit 92f664a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/ws-server.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -351,11 +351,11 @@ export class WsChatServer {
351351
// Save incoming message to API in background
352352
this.saveMessageToApi(msg.from ?? "user", "manager", msg.content).catch(() => {});
353353

354-
// Send immediate acknowledgment so user knows Manager is working
354+
// Send streaming start indicator (creates the streaming bubble in UI)
355355
this.broadcast({
356356
type: WS_MSG.CHAT_STREAM,
357357
from: "manager",
358-
content: "...",
358+
content: "",
359359
timestamp: new Date().toISOString(),
360360
});
361361

0 commit comments

Comments
 (0)