ProfileHoverCard: fix account bio on Mastodon

This commit is contained in:
Alex Gleason
2022-11-22 11:33:00 -06:00
parent 0111d4f179
commit dce26a6600

View File

@ -136,7 +136,7 @@ export const ProfileHoverCard: React.FC<IProfileHoverCard> = ({ visible = true }
</HStack>
) : null}
{account.source.get('note', '').length > 0 && (
{account.note.length > 0 && (
<Text size='sm' dangerouslySetInnerHTML={accountBio} />
)}
</Stack>