Conversation rendered/duplicated multiple times in terminal (v2.1.112)
Preflight Checklist
- [x] I have searched existing issues and this hasn't been reported yet
- [x] This is a single bug report (please file separate reports for different bugs)
- [x] I am using the latest version of Claude Code
What's Wrong?
When scrolling back in a conversation, the entire conversation (welcome banner + user message + assistant response) appears duplicated ~4 times, as if the session was loaded/rendered
repeatedly.
Steps to reproduce:
- Start a new conversation in Claude Code CLI
- Send a message that triggers multiple parallel tool calls (e.g., several WebFetch calls)
- After receiving the response, scroll back in the terminal
- The entire conversation block (including the welcome banner "Welcome back [name]!") appears repeated ~4 times
Expected behavior:
The conversation should appear once.
Actual behavior:
The full conversation (welcome screen + message + response) is rendered 4+ times consecutively in the terminal output.
Environment:
- Claude Code v2.1.112
- Windows 11 Home
- Model: Opus 4.6 (Claude Max)
- Terminal: default bash shell
What Should Happen?
The conversation should be rendered only once. Each message (user + assistant) should appear a single time when scrolling back through the terminal history.
Error Messages/Logs
No error messages. This is a visual/rendering issue only.
Steps to Reproduce
Steps to Reproduce:
- Open Claude Code CLI on Windows
- Start a new conversation
- Send a message that triggers multiple parallel WebFetch tool calls (e.g., "fetch these 4 URLs and analyze them")
- Wait for the full response to complete
- Scroll up in the terminal to review the conversation
- The entire conversation block (welcome banner + user message + all tool calls + response) appears duplicated ~4 times
Claude Model
Opus
Is this a regression?
I don't know
Last Working Version
_No response_
Claude Code Version
2.1.112
Platform
Anthropic API
Operating System
Windows
Terminal/Shell
PowerShell
Additional Information
The duplication includes the welcome banner ("Welcome back [name]!") repeated before each copy, suggesting the entire UI render cycle is being triggered multiple times rather than once.
The actual AI response content is correct and not affected — only the terminal display is duplicated.
Showing cached comments. Read the full discussion on GitHub ↗
8 Comments
Found 3 possible duplicate issues:
This issue will be automatically closed as a duplicate in 3 days.
🤖 Generated with Claude Code
I've also encountered this issue
Same. Getting repeated chunks, saw it in two separate threads. (even in .116)
+1, confirming still reproduces on Claude Code 2.1.116.
Environment
Symptom
Prose paragraphs (not code, not structural output — plain multi-line prose with bullets) rendered verbatim 6× consecutively within a single session. Identical word-for-word, including punctuation and line breaks. No visible tool-use boundary where the duplication starts; no retry in the CLI; no tool call in between. The rest of the session scrolled normally before and after.
This is distinct from #50689 (code-structural duplication) and #50689's repeated-pattern hypothesis — the duplicated content was pure prose with no repeated structural markers that a model could plausibly emit twice by accident.
Onset
Within the last few hours as of 2026-04-21, affecting multiple independent shell-launched sessions (different cwds, different projects) simultaneously. That argues against per-session state and toward a client-side renderer issue or a recent silent auto-update. Surge of related reports filed on this repo today (repetition, duplication, tight-loop freezes on 2.1.116) is consistent.
No recent local changes (hooks, shell wrappers, settings.json) can explain it — behaviour is present in sessions started from fresh shells with only stock config.
I get this on mac, irrespective of whether claude is running in VS Code integrated terminal, or iTerm2, the same output is in the window 5 or 6 times.
Confirming I have the same issue with the following environment:
The content duplication mainly occurs in conversation history scrollable area.
I've also encountered this issue very frequently with the following environment:
/recapwas addedAdding a reproduction data point with transcript-level verification, since this issue is light on repro detail.
Environment: Claude Code 2.1.218, Windows 11 Home, Windows Terminal (
WT_SESSIONset,TERM=xterm-256color), interactive CLI session.Symptom: The most recent assistant text block renders twice in scrollback — the first copy truncated mid-line, the second complete. Observed twice in one long session. The conversation itself is unaffected (verified below); this is purely display.
Correlation (both occurrences):
tool_useat 00:12:38), in the other case Stop-hook system output (text at 23:55:53 → system rows at 23:55:55).queue-operationrows in the transcript) and background task-completion notifications.Transcript verification (why we're confident it's render-side): We grepped the session JSONL for the duplicated sentences. Each appears exactly once in an assistant
message.contenttext block. The additional occurrences in the file exist only inuser/queue-operation/attachmentrows — i.e., the user pasting the doubled screen back into chat. Single emission, double paint.Reading of the mechanism: Consistent with #52866's description of the TUI re-rendering "from scratch on each new chunk/result instead of appending." The truncated first copy suggests the repaint's erase pass underestimates the height of the previous wrapped block (long lines + wide punctuation at this window width), so part of the stale frame survives above the freshly drawn one.
Happy to provide additional environment detail or run a candidate build against the same workflow.