ProfileInfoPanel: truncate long username while loading

This commit is contained in:
Alex Gleason 2023-05-02 13:09:58 -05:00
parent be41c78030
commit ca2dffd9c3
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -120,7 +120,7 @@ const ProfileInfoPanel: React.FC<IProfileInfoPanel> = ({ account, username }) =>
<Stack space={2}>
<Stack>
<HStack space={1} alignItems='center'>
<Text size='sm' theme='muted' direction='ltr'>
<Text size='sm' theme='muted' direction='ltr' truncate>
@{username}
</Text>
</HStack>