diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-12-12 17:21:28 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-12 17:21:28 +0000 |
commit | 10e241e7eb5a45a0c35802618f52b411dcecd0b0 (patch) | |
tree | ce692c59adbf32c5d3fb421362c2ce8d563711ed | |
parent | 88166926fa64c7dd7924a3a8100056175c5f989b (diff) | |
download | voidsky-10e241e7eb5a45a0c35802618f52b411dcecd0b0.tar.zst |
followersCount -> followsCount (#7080)
-rw-r--r-- | src/screens/Profile/ProfileFollows.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/screens/Profile/ProfileFollows.tsx b/src/screens/Profile/ProfileFollows.tsx index 97a05d5cf..85ebccf30 100644 --- a/src/screens/Profile/ProfileFollows.tsx +++ b/src/screens/Profile/ProfileFollows.tsx @@ -38,7 +38,7 @@ export const ProfileFollowsScreen = ({route}: Props) => { </Layout.Header.TitleText> <Layout.Header.SubtitleText> <Plural - value={profile.followersCount ?? 0} + value={profile.followsCount ?? 0} one="# following" other="# following" /> |