diff options
Diffstat (limited to 'components/recentGames.tsx')
-rw-r--r-- | components/recentGames.tsx | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/components/recentGames.tsx b/components/recentGames.tsx index 65c819a..d619eeb 100644 --- a/components/recentGames.tsx +++ b/components/recentGames.tsx @@ -29,11 +29,13 @@ function GameOutcome(props: { game: gameInfo; }) { }[props.game.status](); })(); return <td> - <span className={"outcome " + { - 'w': 'win', - 'l': 'lose', - 'd': 'draw', - }[props.game.outcome]}> + <span + className={'outcome ' + { + 'w': 'win', + 'l': 'lose', + 'd': 'draw', + }[props.game.outcome]} + > {gameStatus} </span> </td>; |