Windows app: every completed turn fails with "This turn couldn't render"
Summary
In the Codex Windows app, every completed turn ends with "This turn couldn't render".
The request itself appears to work: the UI shows Thinking, then briefly streams a few tokens, but when the turn completes the rendered message is replaced by the error card.
This affects old threads, new threads, project chats, and a completely new chat with no project context.
Environment
- Codex Windows app version:
26.814.5167.0 - Package:
OpenAI.Codex_26.814.5167.0_x64__2p2nqsd0c76g0 - Codex CLI on the same machine works correctly.
Reproduction
- Open Codex Windows app.
- Start a completely new chat with no project/repository context.
- Send a trivial prompt such as:
Antworte ausschließlich mit dem Wort Hallo. - Observe
Thinkingand some streamed output. - When the turn completes, the message changes to "This turn couldn't render".
The same happens for existing conversations: thread/project metadata is visible in the sidebar, but every individual turn fails to render.
Troubleshooting already tried
- Fully restarted the app.
- Tested multiple existing chats and projects.
- Tested a brand-new chat without project context.
- Renamed the app's
LocalCachefolder under the MSIX package data directory so Codex had to rebuild it from scratch. - Confirmed that Codex created a fresh
LocalCacheand fresh desktop logs after restart. - Problem remains unchanged after the cache reset.
Expected behavior
Completed turns should remain visible after streaming finishes.
Actual behavior
The turn is replaced by:
This turn couldn't render
with a Try again button.
Additional observation
Because streaming starts successfully and the CLI works on the same machine, this looks more like a Windows desktop rendering/client regression than a general API/auth/network failure.
Logs are available from the freshly recreated Codex desktop log directory if useful for diagnosis.
3 Comments
Potential duplicates detected. Please review them and close your issue if it is a duplicate.
Powered by Codex Action
Not a duplicate.
Confirmed duplicate of #39949 (same root cause). I'm closing #39949 in favor of this one. Sharing the exact root-cause evidence here since it should help pin this quickly:
Confirmed also on 26.818.3698.0 / app-server 0.149.0-alpha.4 (newer build still affected).
Exact renderer error (from
error boundaryevent):A/B control (same account, same network):
chatgpt.com/codex: identical conversation renders fine.Data-contract mismatch — the desktop pipeline's response item for the crashing turn (redacted):
internal_chat_message_metadata_passthroughcontains onlyturn_id/create_time—enable_message_feedbackis absent. The renderer dereferences it without a null-guard. The web path includes the field, so it's the bundled app-server (codex-cli 0.149.0-alpha.4) dropping it when serializing response items for the desktop UI.Suggested fix: include
enable_message_feedbackin the app-server's per-message metadata passthrough, or add a null-guard insubagent-activity-chip-group.