Update host icon in GamePickerCard

Replaced the star () icon with a crown (👑) to represent the host. Adjusted labels, tooltip styles, and descriptive text accordingly for improved clarity and consistency.
This commit is contained in:
2026-02-06 15:01:50 +01:00
parent 83893a0060
commit aefb4234d6

View File

@@ -124,15 +124,15 @@ export default function GamePickerCard({
return (
<div key={m.id} style={pillStyle(isHost, isMe)} title={label}>
{isHost && <span style={{ color: stylesTokens.textGold }}></span>}
<span>{label.replace(" ", "")}</span>
{isHost && <span style={{ color: stylesTokens.textGold }}>👑</span>}
<span>{label.replace(" 👑", "")}</span>
</div>
);
})}
</div>
<div style={{ marginTop: 6, fontSize: 11, opacity: 0.7, color: stylesTokens.textDim }}>
= Host &nbsp;&nbsp;&nbsp;&nbsp; (du) = du
👑 = Host
</div>
</div>
)}