Remove the @ if short or empty display name

Experimental as the '@' seems superfluous
This commit is contained in:
Lim Chee Aun 2023-09-22 20:38:36 +08:00
parent 85a4b382da
commit a816b69ee9

View file

@ -71,9 +71,9 @@ function NameText({
)} )}
</> </>
) : short ? ( ) : short ? (
<i>@{username}</i> <i>{username}</i>
) : ( ) : (
<b>@{username}</b> <b>{username}</b>
)} )}
{showAcct && ( {showAcct && (
<> <>