Update Drawer.tsx

zio/stable
Minseo Lee 2024-02-14 16:14:29 +09:00
parent 3f5bdd8be3
commit 44259948cc
1 changed files with 6 additions and 4 deletions

View File

@ -93,10 +93,12 @@ let DrawerProfileCard = ({
{formatCountShortOnly(profile?.followersCount ?? 0)} {formatCountShortOnly(profile?.followersCount ?? 0)}
</Text>{' '} </Text>{' '}
{pluralize(profile?.followersCount || 0, 'follower')} &middot;{' '} {pluralize(profile?.followersCount || 0, 'follower')} &middot;{' '}
<Trans>
<Text type="xl-medium" style={pal.text}> <Text type="xl-medium" style={pal.text}>
{formatCountShortOnly(profile?.followsCount ?? 0)} {formatCountShortOnly(profile?.followsCount ?? 0)}
</Text>{' '} </Text>{' '}
following following
</Trans>
</Text> </Text>
</TouchableOpacity> </TouchableOpacity>
) )