Skip to content

Commit

Permalink
client: fix bad refactor again
Browse files Browse the repository at this point in the history
  • Loading branch information
fushar committed Aug 25, 2024
1 parent f4ef314 commit 0b29a7a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export function SubmissionDetails({
if (score.startsWith('*')) {
formattedScore = '✓' + score.substring(1);
} else if (score.startsWith('X')) {
formattedScore = score.substring(1);
formattedScore = '✕' + score.substring(1);
}

if (formattedScore.includes(' [')) {
Expand Down

0 comments on commit 0b29a7a

Please sign in to comment.