diff options
author | Minseo Lee <itoupluk427@gmail.com> | 2024-02-14 16:14:29 +0900 |
---|---|---|
committer | Minseo Lee <itoupluk427@gmail.com> | 2024-02-14 16:14:29 +0900 |
commit | 44259948ccb290c2a52496491c4a8d1cbbd071ef (patch) | |
tree | 97686cc4cf2704fabba5bb633f60c53503ab36d2 /src | |
parent | 3f5bdd8be37efbe3bf7b1b60bea2bfa4e32aa159 (diff) | |
download | voidsky-44259948ccb290c2a52496491c4a8d1cbbd071ef.tar.zst |
Update Drawer.tsx
Diffstat (limited to 'src')
-rw-r--r-- | src/view/shell/Drawer.tsx | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/view/shell/Drawer.tsx b/src/view/shell/Drawer.tsx index 2a37d1fe9..23a15d6bd 100644 --- a/src/view/shell/Drawer.tsx +++ b/src/view/shell/Drawer.tsx @@ -93,10 +93,12 @@ let DrawerProfileCard = ({ {formatCountShortOnly(profile?.followersCount ?? 0)} </Text>{' '} {pluralize(profile?.followersCount || 0, 'follower')} ·{' '} - <Text type="xl-medium" style={pal.text}> - {formatCountShortOnly(profile?.followsCount ?? 0)} - </Text>{' '} - following + <Trans> + <Text type="xl-medium" style={pal.text}> + {formatCountShortOnly(profile?.followsCount ?? 0)} + </Text>{' '} + following + </Trans> </Text> </TouchableOpacity> ) |