diff --git a/client/src/components/sessions/SessionRaiseBreakdown.tsx b/client/src/components/sessions/SessionRaiseBreakdown.tsx index 29e83b711..3981dd410 100644 --- a/client/src/components/sessions/SessionRaiseBreakdown.tsx +++ b/client/src/components/sessions/SessionRaiseBreakdown.tsx @@ -460,6 +460,11 @@ function BreakdownChartContents({ scoreData: newScoreData, }) as ScoreDocument; + // We don't actually know what the user's previous score was, we can only walk + // back the raise information we have. As such, we don't keep track of + // judgements, and must nix them here. + mockScore.scoreData.judgements = {}; + preScoreCell = ; }