Conversation
What was broken Checkpoint Review showed scores without identifying members who had won a checkpoint prize. Root cause The review app did not model or render the Challenge API's separate checkpointWinners data. What was changed - Preserve checkpoint winners separately from final-placement winners. - Show an accessible star beside checkpoint scores for winning members with click, hover, and keyboard tooltip details. - Document the member-level winner matching used by the table. Any added/updated tests - Added checkpoint table coverage for winner and non-winner rows, repeated submissions, score links, and tooltip behavior. - Updated challenge model coverage for dedicated and legacy checkpoint winner data.
This was referenced Aug 1, 2026
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.
What was broken
Checkpoint Review displayed review scores without identifying members who had won a checkpoint prize.
Root cause
The Review app did not preserve the Challenge API's checkpoint-winner data separately from final placements or render it in the checkpoint score column.
What was changed
Checkpoint winner records are member-level and do not include a submission ID, so the indicator intentionally appears on every checkpoint row belonging to a winning member.
Any added/updated tests
Validation
yarn test:no-watch --runInBand src/apps/review/src— 39 suites and 143 tests passed.yarn lint— passed.yarn run build— passed with existing build warnings.yarn test:no-watchstill reports 13 pre-existing failing suites outside the Review app (Work, Wallet Admin, and Engagements); 195 of 208 suites and 921 of 957 tests pass, including all PM-5775 coverage.Paired change
Requires Challenge API PR #141 to expose checkpoint winners after Checkpoint Review closes.