aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-03-21 16:47:46 +0900
committernsfisis <nsfisis@gmail.com>2025-03-21 16:47:46 +0900
commit7ba9051c35753c1c987b10cfc926ebf805f270d0 (patch)
treefc117a877ce7c5694265e566143b324f80d08e21
parent432baae1b49343ea780793330149a285a53bbdc7 (diff)
downloadphperkaigi-2025-albatross-7ba9051c35753c1c987b10cfc926ebf805f270d0.tar.gz
phperkaigi-2025-albatross-7ba9051c35753c1c987b10cfc926ebf805f270d0.tar.zst
phperkaigi-2025-albatross-7ba9051c35753c1c987b10cfc926ebf805f270d0.zip
fix
-rw-r--r--frontend/app/components/GolfWatchApps/GolfWatchAppGaming1v1.tsx10
1 files changed, 5 insertions, 5 deletions
diff --git a/frontend/app/components/GolfWatchApps/GolfWatchAppGaming1v1.tsx b/frontend/app/components/GolfWatchApps/GolfWatchAppGaming1v1.tsx
index a17b301..54a5895 100644
--- a/frontend/app/components/GolfWatchApps/GolfWatchAppGaming1v1.tsx
+++ b/frontend/app/components/GolfWatchApps/GolfWatchAppGaming1v1.tsx
@@ -68,18 +68,18 @@ export default function GolfWatchAppGaming1v1({
<div className={`text-white ${topBg} grid grid-cols-3 px-4 py-2`}>
<div className="font-bold flex gap-4 justify-start md:justify-between items-center my-auto">
<div className="flex gap-6 items-center">
- {playerProfileB?.iconPath && (
+ {playerProfileA?.iconPath && (
<UserIcon
- iconPath={playerProfileB.iconPath}
- displayName={playerProfileB.displayName}
+ iconPath={playerProfileA.iconPath}
+ displayName={playerProfileA.displayName}
className="w-12 h-12 my-auto"
/>
)}
<div className="hidden md:block text-4xl">
- {playerProfileB?.displayName}
+ {playerProfileA?.displayName}
</div>
</div>
- <div className="text-2xl md:text-6xl">{scoreB}</div>
+ <div className="text-2xl md:text-6xl">{scoreA}</div>
</div>
<div className="font-bold text-center">
<div className="text-gray-100">{gameDisplayName}</div>