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:
@@ -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;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user