diff options
author | Paul Frazee <pfrazee@gmail.com> | 2024-03-19 12:29:22 -0700 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2024-03-19 12:29:22 -0700 |
commit | 14982b93938c5b4141408e9b0887b261469eed4f (patch) | |
tree | 3c789effa60a94dc524a530ddf1e2b8950942906 /src/view/shell/Drawer.tsx | |
parent | dac73cbeea3c346c255eec15d08bd9c585263bec (diff) | |
parent | ad43d594c9f63fc85e6927d23cd3f3f21406b002 (diff) | |
download | voidsky-14982b93938c5b4141408e9b0887b261469eed4f.tar.zst |
Merge branch 'patch-3' of https://github.com/quiple/social-app into quiple-patch-3
Diffstat (limited to 'src/view/shell/Drawer.tsx')
-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 d2dd67dcb..1bf5647f6 100644 --- a/src/view/shell/Drawer.tsx +++ b/src/view/shell/Drawer.tsx @@ -94,10 +94,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> ) |