aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2024-08-10 23:29:50 +0900
committernsfisis <nsfisis@gmail.com>2024-08-10 23:29:50 +0900
commit88db9e7e043d59deae6258652d04f2cabf5708ca (patch)
treec7d49d36046aa4fd22cfe862b9e516b104ab3678
parentcc6985938643fd42c999d40d77af7f3a0f0890b5 (diff)
downloadiosdc-japan-2024-albatross-88db9e7e043d59deae6258652d04f2cabf5708ca.tar.gz
iosdc-japan-2024-albatross-88db9e7e043d59deae6258652d04f2cabf5708ca.tar.zst
iosdc-japan-2024-albatross-88db9e7e043d59deae6258652d04f2cabf5708ca.zip
feat(frontend): change score display
-rw-r--r--frontend/app/components/GolfWatchApps/GolfWatchAppGaming.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/app/components/GolfWatchApps/GolfWatchAppGaming.tsx b/frontend/app/components/GolfWatchApps/GolfWatchAppGaming.tsx
index fea81fd..65cd35e 100644
--- a/frontend/app/components/GolfWatchApps/GolfWatchAppGaming.tsx
+++ b/frontend/app/components/GolfWatchApps/GolfWatchAppGaming.tsx
@@ -98,7 +98,7 @@ export default function GolfWatchAppGaming({
</div>
<div className="grid grid-cols-[auto_1fr_auto]">
<div className="grid justify-start bg-red-500 p-2 text-lg font-bold text-white">
- {playerInfoA.score ?? "-"}
+ {playerInfoA.score}
</div>
<div className="w-full bg-blue-500">
<div
@@ -107,7 +107,7 @@ export default function GolfWatchAppGaming({
></div>
</div>
<div className="grid justify-end bg-blue-500 p-2 text-lg font-bold text-white">
- {playerInfoB.score ?? "-"}
+ {playerInfoB.score}
</div>
</div>
<div className="grid grid-cols-[3fr_2fr_3fr_2fr] p-2">