fix(frontend): playground error-state Try again button actually retries - #5906
Merged
Merged
Conversation
The button had no onClick — it rendered, did nothing, and left users stuck on 'unable to communicate with the service' (found by the acceptance-repair agent, 3/3 repro via a just-committed revision racing entity resolution). Reload matches what recovery actually requires there.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Repository YAML (base), Organization UI (inherited) Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (1)
📝 WalkthroughSummary by CodeRabbit
WalkthroughThe Playground error-state “Try again” button now reloads the browser page when clicked. ChangesPlayground error retry
Estimated code review effort: 1 (Trivial) | ~2 minutes 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches 💡 1🛠️ Fix failing CI checks 💡
📝 Generate docstrings
🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Contributor
Railway Preview Environment
Updated at 2026-08-10T15:04:32.705Z |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Context
The playground's "Something went wrong / Playground is unable to communicate with the service" error state renders a Try again button with no click handler. It does nothing, and a user who hits the error state (reproducible 3/3 when a just-committed revision races the playground's entity resolution, per the diagnosis in #5905) is stuck.
Changes
One line: the button reloads the page, which is what recovery requires in that state (the racing revision resolves on a fresh load).
Tests
Prettier clean; the dev stack hot-reloaded and serves 200. The error state needs the race to render, so the practical check is in the What to QA line.
What to QA