From a816b69ee9ad05ef62cdbbe5ad2a0ff17f859202 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Fri, 22 Sep 2023 20:38:36 +0800 Subject: [PATCH] Remove the @ if short or empty display name Experimental as the '@' seems superfluous --- src/components/name-text.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/name-text.jsx b/src/components/name-text.jsx index b2895ac..b1b8952 100644 --- a/src/components/name-text.jsx +++ b/src/components/name-text.jsx @@ -71,9 +71,9 @@ function NameText({ )} ) : short ? ( - @{username} + {username} ) : ( - @{username} + {username} )} {showAcct && ( <>