diff options
Diffstat (limited to 'frontend/app')
| -rw-r--r-- | frontend/app/components/GolfPlayApps/GolfPlayAppGaming.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/frontend/app/components/GolfPlayApps/GolfPlayAppGaming.tsx b/frontend/app/components/GolfPlayApps/GolfPlayAppGaming.tsx index 1a08b98..fdf0e0c 100644 --- a/frontend/app/components/GolfPlayApps/GolfPlayAppGaming.tsx +++ b/frontend/app/components/GolfPlayApps/GolfPlayAppGaming.tsx @@ -38,8 +38,7 @@ export default function GolfPlayAppGaming({ <div className="mb-4 mt-auto"> <div className="mb-2"> <div className="font-semibold text-green-500"> - Score: {currentScore == null ? "-" : `${currentScore}`} ( - {lastExecStatus}) + Score: {currentScore ?? "-"} ({lastExecStatus ?? "-"}) </div> </div> <button |
