diff options
author | Ivan Chen <ivan@tagg.id> | 2021-07-23 18:59:04 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-23 18:59:04 -0400 |
commit | 2f64db843b80229d08f8f0ae7e1d80b24ac38c12 (patch) | |
tree | 6fdb3f5ce0d5ca6bd46418d8bb76b27457afec3d /src/RootNavigation.ts | |
parent | 841693de4d72fc50079aa1b24fc13f27d02decc4 (diff) | |
parent | 124bdd91ac9ae92bd5607d227b705e2b1a07cab6 (diff) |
Merge pull request #507 from shravyaramesh/tma985-moment-view-count
[TMA-985] Moment view count
Diffstat (limited to 'src/RootNavigation.ts')
-rw-r--r-- | src/RootNavigation.ts | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/RootNavigation.ts b/src/RootNavigation.ts index 9baa7828..bd2ba20d 100644 --- a/src/RootNavigation.ts +++ b/src/RootNavigation.ts @@ -6,8 +6,6 @@ export const navigationRef: React.RefObject<NavigationContainerRef> = export function navigate(name: string) { if (navigationRef.current) { - // Perform navigation if the app has mounted - //console.log('Reached root navigation'); navigationRef.current.navigate(name); } else { // TODO: Decide what to do if the app hasn't mounted |