Don't truncate bio on profile page
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
parent
fda1849882
commit
02d1c5dcff
1 changed files with 1 additions and 1 deletions
|
@ -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'>
|
||||
|
|
Loading…
Reference in a new issue