aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/components/GolfPlayApps
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/app/components/GolfPlayApps')
-rw-r--r--frontend/app/components/GolfPlayApps/GolfPlayAppGaming.tsx7
-rw-r--r--frontend/app/components/GolfPlayApps/GolfPlayAppWaiting.tsx2
2 files changed, 3 insertions, 6 deletions
diff --git a/frontend/app/components/GolfPlayApps/GolfPlayAppGaming.tsx b/frontend/app/components/GolfPlayApps/GolfPlayAppGaming.tsx
index b1b6f80..0931f73 100644
--- a/frontend/app/components/GolfPlayApps/GolfPlayAppGaming.tsx
+++ b/frontend/app/components/GolfPlayApps/GolfPlayAppGaming.tsx
@@ -72,12 +72,9 @@ export default function GolfPlayAppGaming({
<LeftTime sec={leftTimeSeconds} />
</div>
<Link to={"/dashboard"}>
- <div className="flex gap-4 my-auto font-bold">
+ <div className="flex gap-6 items-center font-bold">
<div className="text-6xl">{score}</div>
- <div className="text-end">
- <div className="text-gray-100">Player 1</div>
- <div className="text-2xl">{playerProfile.displayName}</div>
- </div>
+ <div className="text-4xl">{playerProfile.displayName}</div>
{playerProfile.iconPath && (
<UserIcon
iconPath={playerProfile.iconPath}
diff --git a/frontend/app/components/GolfPlayApps/GolfPlayAppWaiting.tsx b/frontend/app/components/GolfPlayApps/GolfPlayAppWaiting.tsx
index 4b74c0d..303b4a8 100644
--- a/frontend/app/components/GolfPlayApps/GolfPlayAppWaiting.tsx
+++ b/frontend/app/components/GolfPlayApps/GolfPlayAppWaiting.tsx
@@ -16,7 +16,7 @@ export default function GolfPlayAppWaiting({
<div className="text-4xl">{gameDisplayName}</div>
</div>
<div className="grow grid mx-auto text-black">
- <PlayerNameAndIcon label="You" profile={playerProfile} />
+ <PlayerNameAndIcon profile={playerProfile} />
</div>
</div>
);