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; };