diff options
author | Ashm Walia <40498934+ashmgarv@users.noreply.github.com> | 2020-10-27 14:16:50 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-27 17:16:50 -0400 |
commit | 9b9b1b792f914709de01e1d502014b8deb66e291 (patch) | |
tree | 8d403d2232cfab31c590acd26222bfa476de4dee /src/components/taggs | |
parent | 9c7a867c1851914322a4b60f20223ae06a31c661 (diff) |
[HOT FIX] Fix stack navigation (#78)
* Fix stack navigation
* Fix stack navigation
Diffstat (limited to 'src/components/taggs')
-rw-r--r-- | src/components/taggs/Tagg.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/taggs/Tagg.tsx b/src/components/taggs/Tagg.tsx index c64da5ef..39cbee06 100644 --- a/src/components/taggs/Tagg.tsx +++ b/src/components/taggs/Tagg.tsx @@ -54,7 +54,7 @@ const Tagg: React.FC<TaggProps> = ({ const modalOrAuthBrowserOrPass = async () => { if (youMayPass) { if (INTEGRATED_SOCIAL_LIST.indexOf(social) !== -1) { - navigation.navigate('SocialMediaTaggs', { + navigation.push('SocialMediaTaggs', { socialMediaType: social, isProfileView: isProfileView, }); |