diff options
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> |
