diff options
author | lonkaars <l.leblansch@gmail.com> | 2021-03-16 14:57:49 +0100 |
---|---|---|
committer | lonkaars <l.leblansch@gmail.com> | 2021-03-16 14:57:49 +0100 |
commit | 8c5618c497045a87cd2d9c663e695aeab95d24d7 (patch) | |
tree | 27ca969d026209f34493ed592daef6a095d20db1 /pages/user.tsx | |
parent | 03bad7b1d65394eff846f411aa5c49982843b100 (diff) |
poopy rating on profile
Diffstat (limited to 'pages/user.tsx')
-rw-r--r-- | pages/user.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/user.tsx b/pages/user.tsx index ac6f012..a79e353 100644 --- a/pages/user.tsx +++ b/pages/user.tsx @@ -286,7 +286,7 @@ export default function AccountPage() { <InfoModule icon={<ArrowUpwardOutlinedIcon style={{ color: "var(--disk-b-text)" }}/>} label={ gameInfo?.totals.win + " keer gewonnen" }/> <InfoModule icon={<Icon size={1} path={mdiEqual}/>} label={ gameInfo?.totals.draw + " keer gelijkspel" }/> <InfoModule icon={<ArrowDownwardOutlinedIcon style={{ color: "var(--disk-a-text)" }}/>} label={ gameInfo?.totals.lose + " keer verloren" }/> - <InfoModule icon={<Icon size={1} path={mdiClipboardTextOutline}/>} label="Score: 400"/> + <InfoModule icon={<Icon size={1} path={mdiClipboardTextOutline}/>} label={ "Score: " + user?.rating }/> <InfoModule icon={<Icon size={1} path={mdiGamepadSquareOutline}/>} label={(() => { var label = gameInfo?.totals.games.toString() + " "; label += gameInfo?.totals.games == 1 ? "potje" : "potjes"; |