Show runtime guidance in transcript

This commit is contained in:
wuyang6
2026-06-12 18:37:04 +08:00
parent 5bcc22622e
commit cdf27e5bd2
3 changed files with 124 additions and 1 deletions
@@ -985,7 +985,10 @@ const ComposerPendingInputQueue: FC<{ sessionId: string | null }> = ({
status: "pending",
})
.catch(() => undefined)
.finally(dispatchInputQueueChanged);
.finally(() => {
dispatchInputQueueChanged();
window.dispatchEvent(new Event("claw-sessions-changed"));
});
}}
>