diff options
author | Kingsley-swe <71396041+Kingsley-swe@users.noreply.github.com> | 2020-10-24 20:52:28 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-24 20:52:28 -0400 |
commit | 80a5b47d9fef940604d729ff5c428e16aa4be37a (patch) | |
tree | 8088322f15e89dd7347b1940cc59ad9efc974bfa /src/components/profile/Content.tsx | |
parent | 84d283b44f2b6cecb757edcd94e717a36c3ba3c3 (diff) |
[TMA 27] Followers list (#69)
* "Followers list "
* Mended followers list
* fix export error
Co-authored-by: Ashm Walia <ashmwalia@outlook.com>
Co-authored-by: Husam Salhab <47015061+hsalhab@users.noreply.github.com>
Diffstat (limited to 'src/components/profile/Content.tsx')
-rw-r--r-- | src/components/profile/Content.tsx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/components/profile/Content.tsx b/src/components/profile/Content.tsx index 8a3c36ff..50e9d627 100644 --- a/src/components/profile/Content.tsx +++ b/src/components/profile/Content.tsx @@ -158,9 +158,8 @@ const Content: React.FC<ContentProps> = ({y, isProfileView}) => { showsVerticalScrollIndicator={false} scrollEventThrottle={1} stickyHeaderIndices={[2, 4]}> - <ProfileCutout> - <ProfileHeader {...{isProfileView}} /> - </ProfileCutout> + <ProfileCutout/> + <ProfileHeader {...{isProfileView}} /> <ProfileBody {...{ onLayout, |