diff options
author | Husam Salhab <47015061+hsalhab@users.noreply.github.com> | 2020-10-26 18:42:02 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-26 18:42:02 -0400 |
commit | 17fbfa29c1b78703b872221e3b590aca3ef5cf7e (patch) | |
tree | ed3ede72471f117f7bb81da47b9e6276eaa01f55 /src/routes/profile/ProfileStack.tsx | |
parent | 61bcb48511095d5568a013429b0092c57659df0e (diff) |
[TMA-13] List of following (#72)
* move async-storage
* removed lock files
* added lock files to gitignore
* added the wrong file to gitignore
* added following list
* added numFollowers; removed redundant code
* removed followercount stuff for now
* Fixed follower count
* Made come more changes
Co-authored-by: Ashm Walia <ashmwalia@outlook.com>
Diffstat (limited to 'src/routes/profile/ProfileStack.tsx')
-rw-r--r-- | src/routes/profile/ProfileStack.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/routes/profile/ProfileStack.tsx b/src/routes/profile/ProfileStack.tsx index 0cb20f75..d85f003e 100644 --- a/src/routes/profile/ProfileStack.tsx +++ b/src/routes/profile/ProfileStack.tsx @@ -27,7 +27,8 @@ export type ProfileStackParams = { isProfileView: boolean; }; FollowersListScreen: { - isProfileView: boolean; + isProfileView: boolean, + isFollowers: boolean; }; }; |