From aefb4234d6c84baa656895451aad9ec26e795b9e Mon Sep 17 00:00:00 2001 From: nessi Date: Fri, 6 Feb 2026 15:01:50 +0100 Subject: [PATCH] Update host icon in GamePickerCard MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replaced the star (⭐) icon with a crown (👑) to represent the host. Adjusted labels, tooltip styles, and descriptive text accordingly for improved clarity and consistency. --- frontend/src/components/GamePickerCard.jsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/components/GamePickerCard.jsx b/frontend/src/components/GamePickerCard.jsx index 8b71920..7df45a5 100644 --- a/frontend/src/components/GamePickerCard.jsx +++ b/frontend/src/components/GamePickerCard.jsx @@ -124,15 +124,15 @@ export default function GamePickerCard({ return (
- {isHost && } - {label.replace(" ⭐", "")} + {isHost && 👑} + {label.replace(" 👑", "")}
); })}
- ⭐ = Host   •   (du) = du + 👑 = Host
)}