reverting to acct full identifier, inside mention links

fix-i1576
tassoman 2023-10-15 00:41:03 +02:00
rodzic 7e884aabce
commit 8ce94de77c
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -29,10 +29,10 @@ const Mention: React.FC<IMention> = ({ mention: { acct, username }, disabled })
onClick={handleClick}
dir='ltr'
>
@{isPubkey(username) ? username.slice(0, 8) : username}
@{isPubkey(username) ? username.slice(0, 8) : acct}
</Link>
</Tooltip>
);
};
export default Mention;
export default Mention;