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.
This commit is contained in:
2026-02-06 16:52:17 +01:00
parent aefb4234d6
commit 56ef076010

View File

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