From c6ad706f0ca07428e3b9793307b00fff1fda2e12 Mon Sep 17 00:00:00 2001 From: James Ketrenos Date: Sat, 26 Feb 2022 15:00:50 -0800 Subject: [PATCH] Fix #34 -- player was being used instead of tmp Signed-off-by: James Ketrenos --- client/src/Winner.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/Winner.js b/client/src/Winner.js index af5b33e..19f1290 100644 --- a/client/src/Winner.js +++ b/client/src/Winner.js @@ -37,7 +37,7 @@ const Winner = ({table, color}) => { continue; } let line = <> {getPlayerName(table.game.sessions, key)} finished with {tmp.points} victory points. - They had {player.potential} unplayed Victory Point card(s). + They had {tmp.potential} unplayed Victory Point card(s). description = <>{description}

{line}

; }