Skip to content

Commit d06ccd5

Browse files
committed
fix: update reference to highest possible score
Update the explanation of the highest possible score to use the correct data source. The change reflects the use of the appropriate language object to access the leaderboard's highest possible score.
1 parent d29c21b commit d06ccd5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/components/leaderboard-page/entries-table.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export default class LeaderboardPageEntriesTable extends Component<Signature> {
2121

2222
get explanationMarkdownForScore() {
2323
return `
24-
The highest possible score for this track is ${this.args.topEntries[0]!.leaderboard.highestPossibleScore}.
24+
The highest possible score for this track is ${this.args.language.leaderboard!.highestPossibleScore}.
2525
2626
Harder stages have higher scores assigned to them.
2727
`.trim();

0 commit comments

Comments
 (0)