From 8a47729bcc2b859cbbc980e617e515813efc339a Mon Sep 17 00:00:00 2001 From: snen Date: Thu, 7 Oct 2021 03:25:03 -0400 Subject: [PATCH] Correctly inform player whether they won --- client/game/Game.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/game/Game.tsx b/client/game/Game.tsx index dd887d0..b056465 100644 --- a/client/game/Game.tsx +++ b/client/game/Game.tsx @@ -90,7 +90,7 @@ export default function Game(props: GameProps): JSX.Element { ) : (
- {maybeIsGameWinner ? "You Lose!" : "You Win!"} + {maybeIsGameWinner ? "You Win!" : "You Lose!"}
)}