diff options
| -rw-r--r-- | frontend/app/components/GolfWatchApps/GolfWatchAppGaming.tsx | 4 |
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"> |
