${isEmpty
? html`
${translateText("host_modal.empty_team")}
`
: repeat(
preview.players,
(p) => p.clientID ?? p.username,
(p) =>
html`
${p.username}
${p.clientID === this.lobbyCreatorClientID
? html`(${translateText("host_modal.host_badge")})`
: this.onKickPlayer
? html``
: html``}
`,
)}