diff options
| author | nsfisis <nsfisis@gmail.com> | 2024-08-12 01:23:54 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2024-08-12 01:23:54 +0900 |
| commit | 5964fa404909550a2dd42a75633fef223fdb05fb (patch) | |
| tree | d282d098690d0a85930d89ff68f47507c0eb5d7c /frontend/app/components/GolfWatchApps | |
| parent | 8c7d882dfa67bcef37a4f39be6f1ca57f160b816 (diff) | |
| download | phperkaigi-2025-albatross-5964fa404909550a2dd42a75633fef223fdb05fb.tar.gz phperkaigi-2025-albatross-5964fa404909550a2dd42a75633fef223fdb05fb.tar.zst phperkaigi-2025-albatross-5964fa404909550a2dd42a75633fef223fdb05fb.zip | |
feat: do not show preliminary score
Diffstat (limited to 'frontend/app/components/GolfWatchApps')
| -rw-r--r-- | frontend/app/components/GolfWatchApps/GolfWatchAppGaming.tsx | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/frontend/app/components/GolfWatchApps/GolfWatchAppGaming.tsx b/frontend/app/components/GolfWatchApps/GolfWatchAppGaming.tsx index 65cd35e..173e8e3 100644 --- a/frontend/app/components/GolfWatchApps/GolfWatchAppGaming.tsx +++ b/frontend/app/components/GolfWatchApps/GolfWatchAppGaming.tsx @@ -24,7 +24,6 @@ type SubmissionResult = { | "compile_error" | "runtime_error" | "internal_error"; - preliminaryScore: number; verificationResults: VerificationResult[]; }; @@ -120,8 +119,7 @@ export default function GolfWatchAppGaming({ <div> {submissionResultStatusToLabel( playerInfoA.submissionResult?.status ?? null, - )}{" "} - ({playerInfoA.submissionResult?.preliminaryScore}) + )} </div> <div> <ol> @@ -153,8 +151,7 @@ export default function GolfWatchAppGaming({ <div> {submissionResultStatusToLabel( playerInfoB.submissionResult?.status ?? null, - )}{" "} - ({playerInfoB.submissionResult?.preliminaryScore ?? "-"}) + )} </div> <div> <ol> |
