From 0e629151bab02c9057f421f8ce16e4c339f0bc4e Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Tue, 24 Jan 2023 03:43:25 +0000 Subject: [PATCH] Add crown to pinball champ --- webclient/src/Display.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webclient/src/Display.js b/webclient/src/Display.js index 6587c8a..33fdeb1 100644 --- a/webclient/src/Display.js +++ b/webclient/src/Display.js @@ -114,7 +114,7 @@ export function DisplayScores(props) { {scores && scores.map((x, i) =>
-
#{i+1} — {x.name}.
+
#{i+1} — {x.name}. {i === 0 ? '👑' : ''}

{x.score.toLocaleString()}

)}