diff options
author | Minseo Lee <itoupluk427@gmail.com> | 2023-09-07 05:45:50 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-06 13:45:50 -0700 |
commit | b6d239aa376f88ceab293b415fcb0568ad199705 (patch) | |
tree | e2ffb904626554fa702a5f71bae9499143b51b7f | |
parent | 63f0b2f0e5f7364dbfcc15285beefc8133831f01 (diff) | |
download | voidsky-b6d239aa376f88ceab293b415fcb0568ad199705.tar.zst |
Update ProfileHeader.tsx (#1389)
-rw-r--r-- | src/view/com/profile/ProfileHeader.tsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/view/com/profile/ProfileHeader.tsx b/src/view/com/profile/ProfileHeader.tsx index 8786fd0b9..1c683ab9a 100644 --- a/src/view/com/profile/ProfileHeader.tsx +++ b/src/view/com/profile/ProfileHeader.tsx @@ -470,8 +470,8 @@ const ProfileHeaderLoaded = observer( accessibilityRole="button" accessibilityLabel={`${followers} ${pluralizedFollowers}`} accessibilityHint={'Opens followers list'}> - <Text type="md" style={[s.bold, s.mr2, pal.text]}> - {followers} + <Text type="md" style={[s.bold, pal.text]}> + {followers}{' '} </Text> <Text type="md" style={[pal.textLight]}> {pluralizedFollowers} @@ -484,8 +484,8 @@ const ProfileHeaderLoaded = observer( accessibilityRole="button" accessibilityLabel={`${following} following`} accessibilityHint={'Opens following list'}> - <Text type="md" style={[s.bold, s.mr2, pal.text]}> - {following} + <Text type="md" style={[s.bold, pal.text]}> + {following}{' '} </Text> <Text type="md" style={[pal.textLight]}> following |