File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -6,13 +6,12 @@ import {
66 StaticParamList ,
77} from '@react-navigation/native' ;
88import { createNativeStackNavigator } from '@react-navigation/native-stack' ;
9- import React , { Suspense , useEffect } from 'react' ;
10- import { Platform , View } from 'react-native' ;
9+ import React , { useEffect } from 'react' ;
10+ import { Platform } from 'react-native' ;
1111import { GestureHandlerRootView } from 'react-native-gesture-handler' ;
1212
1313import { DefaultNavBar } from '../components/NavBar' ;
1414import AppLayout from '../layouts/AppLayout' ;
15- const SuspenseFallback = ( ) => < View > Loading...</ View > ;
1615import analytics from '../utils/analytics' ;
1716import { white } from '../utils/colors' ;
1817import { setupUniversalLinkListenerInNavigation } from '../utils/deeplinks' ;
@@ -84,9 +83,7 @@ const NavigationWithTracking = () => {
8483
8584 return (
8685 < GestureHandlerRootView >
87- < Suspense fallback = { < SuspenseFallback /> } >
88- < Navigation ref = { navigationRef } onStateChange = { trackScreen } />
89- </ Suspense >
86+ < Navigation ref = { navigationRef } onStateChange = { trackScreen } />
9087 </ GestureHandlerRootView >
9188 ) ;
9289} ;
You can’t perform that action at this time.
0 commit comments