From 56ef0760103d065b19a6a49132568ae0029ca72d Mon Sep 17 00:00:00 2001 From: nessi Date: Fri, 6 Feb 2026 16:52:17 +0100 Subject: [PATCH] Remove star emoji for host users in GamePickerCard. The star emoji for identifying host users has been removed from the `suffix` logic. This simplifies the component and aligns with updated display requirements. --- frontend/src/components/GamePickerCard.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/GamePickerCard.jsx b/frontend/src/components/GamePickerCard.jsx index 7df45a5..37fed88 100644 --- a/frontend/src/components/GamePickerCard.jsx +++ b/frontend/src/components/GamePickerCard.jsx @@ -18,7 +18,7 @@ export default function GamePickerCard({ const isMe = !!(me?.id && String(me.id) === String(m.id)); const isHost = !!(hostUserId && String(hostUserId) === String(m.id)); - const suffix = `${isHost ? " ⭐" : ""}${isMe ? " (du)" : ""}`; + const suffix = `${isHost ? " " : ""}${isMe ? " (du)" : ""}`; return base + suffix; };