feat(frontend): make investigation overview replay-first#22
feat(frontend): make investigation overview replay-first#22ThomsenDrake merged 8 commits intomainfrom
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 79d61af5fe
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| replayEntries = []; | ||
| replayStatus = "idle"; | ||
| replayError = ""; | ||
| selectedReplaySeq = null; |
There was a problem hiding this comment.
Invalidate pending replay loads on session switch
Bump or cancel the replay request sequence when handling session-changed; otherwise an in-flight loadReplay from the previous session can still pass the seq !== replaySeq guard and overwrite the newly reset pane with stale history. This happens when the user switches sessions while getSessionHistory(...) is still resolving, because this reset block clears UI state but does not invalidate older requests.
Useful? React with 👍 / 👎.
Summary
Verification