diff options
author | Ivan Chen <ivan@tagg.id> | 2021-05-13 20:13:19 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-13 20:13:19 -0400 |
commit | 183ce2b263e7282f42d204ebd59676b8e28352ec (patch) | |
tree | 839f56d6fbdb71d328eb541e74206ceb0bb81119 /src | |
parent | e6f046cb0fd9abbfc1bfff6f3294a1ae25a91d6c (diff) | |
parent | 3262626f8beffaa8ee0f4a7a643bcf0c01ee694a (diff) |
Merge pull request #423 from brian-tagg/friendScreenPushNotNavigate
[TMA-863] Tiny change to push not navigate, no longer goes back
Diffstat (limited to 'src')
-rw-r--r-- | src/components/profile/FriendsCount.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/profile/FriendsCount.tsx b/src/components/profile/FriendsCount.tsx index 8252266e..a299e9a1 100644 --- a/src/components/profile/FriendsCount.tsx +++ b/src/components/profile/FriendsCount.tsx @@ -37,7 +37,7 @@ const FriendsCount: React.FC<FriendsCountProps> = ({ return ( <TouchableOpacity onPress={() => - navigation.navigate('FriendsListScreen', { + navigation.push('FriendsListScreen', { userXId, screenType, }) |