feat: add a Team Panel

This commit is contained in:
2025-03-23 15:01:26 +01:00
parent 8c938a7ebc
commit 691b99daa8
6 changed files with 157 additions and 21 deletions

View File

@@ -44,7 +44,7 @@ const UserInfo = (user: User, teams: TeamState | undefined) => {
>
{teams.teams.map((team, index) => (
<li>
{teams.activeTeam === index ? <b>{team.name}</b> : team.name} (
{<b>{team.name}</b>} (
{team.location || team.country || "location unknown"})
</li>
))}