diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-03-11 01:23:41 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-03-11 01:23:41 +0900 |
| commit | a93c441ec4f992ed2f7eeae23fb823b1d152913f (patch) | |
| tree | c8e7750019849a7100d11ac6b81517ad0d5c98ea /frontend/app/components/GolfWatchApps/GolfWatchAppGamingMultiplayer.tsx | |
| parent | 57212d2c7992a46827f503ae70c8e31f2084b718 (diff) | |
| download | iosdc-japan-2025-albatross-a93c441ec4f992ed2f7eeae23fb823b1d152913f.tar.gz iosdc-japan-2025-albatross-a93c441ec4f992ed2f7eeae23fb823b1d152913f.tar.zst iosdc-japan-2025-albatross-a93c441ec4f992ed2f7eeae23fb823b1d152913f.zip | |
feat: show user label
Diffstat (limited to 'frontend/app/components/GolfWatchApps/GolfWatchAppGamingMultiplayer.tsx')
| -rw-r--r-- | frontend/app/components/GolfWatchApps/GolfWatchAppGamingMultiplayer.tsx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/frontend/app/components/GolfWatchApps/GolfWatchAppGamingMultiplayer.tsx b/frontend/app/components/GolfWatchApps/GolfWatchAppGamingMultiplayer.tsx index 7a36283..758c589 100644 --- a/frontend/app/components/GolfWatchApps/GolfWatchAppGamingMultiplayer.tsx +++ b/frontend/app/components/GolfWatchApps/GolfWatchAppGamingMultiplayer.tsx @@ -2,6 +2,7 @@ import { useAtomValue } from "jotai"; import type { components } from "../../api/schema"; import { gamingLeftTimeSecondsAtom } from "../../states/watch"; import BorderedContainer from "../BorderedContainer"; +import UserLabel from "../UserLabel"; type RankingEntry = components["schemas"]["RankingEntry"]; @@ -91,6 +92,9 @@ export default function GolfWatchAppGamingMultiplayer({ </td> <td className="px-6 py-4 whitespace-nowrap text-gray-900"> {entry.player.display_name} + {entry.player.label && ( + <UserLabel label={entry.player.label} /> + )} </td> <td className="px-6 py-4 whitespace-nowrap text-gray-900"> {entry.score} |
