Don't truncate bio on profile page

Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
marcin mikołajczak 2024-05-28 17:44:05 +02:00
parent fda1849882
commit 02d1c5dcff

View file

@ -154,7 +154,7 @@ const ProfileInfoPanel: React.FC<IProfileInfoPanel> = ({ account, username }) =>
<ProfileStats account={account} />
{account.note.length > 0 && (
<Markup size='sm' dangerouslySetInnerHTML={{ __html: account.note_emojified }} truncate />
<Markup size='sm' dangerouslySetInnerHTML={{ __html: account.note_emojified }} />
)}
<div className='flex flex-col items-start gap-2 md:flex-row md:flex-wrap md:items-center'>