Skip to content

Commit c41246e

Browse files
committed
fix: remove empty screen reader announcement
Removes premature "Claude says" announcement that had no content. Now screen readers only announce when Claude actually provides content.
1 parent b8eb139 commit c41246e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/components/ClaudeCodeSession.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -489,8 +489,7 @@ export const ClaudeCodeSession: React.FC<ClaudeCodeSessionProps> = ({
489489
setError(null);
490490
hasActiveSessionRef.current = true;
491491

492-
// Announce that Claude is starting to process
493-
announceClaudeStarted();
492+
// Don't announce "Claude says" here - wait for actual content to arrive
494493

495494
// For resuming sessions, ensure we have the session ID
496495
if (effectiveSession && !claudeSessionId) {

0 commit comments

Comments
 (0)