diff options
| author | nsfisis <nsfisis@gmail.com> | 2024-08-05 21:54:52 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2024-08-05 21:54:52 +0900 |
| commit | 077701d9f6534c4cd37149e59c6d5cf77f868b0e (patch) | |
| tree | 121ae8e3dbe7ae7617781af4d4862bb97a14fdf7 /frontend | |
| parent | 7264f256b5f8f5795e0388124f5f0d057df2094c (diff) | |
| download | iosdc-japan-2024-albatross-077701d9f6534c4cd37149e59c6d5cf77f868b0e.tar.gz iosdc-japan-2024-albatross-077701d9f6534c4cd37149e59c6d5cf77f868b0e.tar.zst iosdc-japan-2024-albatross-077701d9f6534c4cd37149e59c6d5cf77f868b0e.zip | |
feat(frontend): tweak play page
Diffstat (limited to 'frontend')
| -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 |
