remove "your name?" once chosen

This commit is contained in:
julius 2025-01-28 18:28:23 +01:00
parent 970a06cf9c
commit da9c3be1cd
Signed by: julius
GPG Key ID: C80A63E6A5FD7092

View File

@ -40,9 +40,9 @@ export function SelectUser({
return ( return (
<> <>
<div className="box user"> <div className="box user">
<span>your name?</span>
{user.length < 1 ? ( {user.length < 1 ? (
<> <>
<span>your name?</span>
<br /> <span className="grey hint">drag your name here</span> <br /> <span className="grey hint">drag your name here</span>
</> </>
) : ( ) : (
@ -55,7 +55,6 @@ export function SelectUser({
> >
{" ✕"} {" ✕"}
</span> </span>
<br />
</> </>
)} )}
<PlayerList <PlayerList