From 0bc943a36c9992d1098d92812b19b70d371e6a0d Mon Sep 17 00:00:00 2001 From: nsfisis Date: Thu, 20 Mar 2025 21:16:55 +0900 Subject: feat(frontend): remove "player 1" or "player 2" labels --- frontend/app/components/PlayerNameAndIcon.tsx | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'frontend/app/components/PlayerNameAndIcon.tsx') diff --git a/frontend/app/components/PlayerNameAndIcon.tsx b/frontend/app/components/PlayerNameAndIcon.tsx index c9c7f20..92b757d 100644 --- a/frontend/app/components/PlayerNameAndIcon.tsx +++ b/frontend/app/components/PlayerNameAndIcon.tsx @@ -2,17 +2,13 @@ import { PlayerProfile } from "../types/PlayerProfile"; import UserIcon from "./UserIcon"; type Props = { - label: string; profile: PlayerProfile; }; -export default function PlayerNameAndIcon({ label, profile }: Props) { +export default function PlayerNameAndIcon({ profile }: Props) { return (
-
-
{label}
-
{profile.displayName}
-
+
{profile.displayName}
{profile.iconPath && (