diff options
Diffstat (limited to 'src/App.native.tsx')
-rw-r--r-- | src/App.native.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/App.native.tsx b/src/App.native.tsx index 0adbae606..e0e030cbc 100644 --- a/src/App.native.tsx +++ b/src/App.native.tsx @@ -2,7 +2,7 @@ import 'react-native-url-polyfill/auto' import React, {useState, useEffect} from 'react' import {Linking} from 'react-native' import {RootSiblingParent} from 'react-native-root-siblings' -import SplashScreen from 'react-native-splash-screen' +import * as SplashScreen from 'expo-splash-screen' import {SafeAreaProvider} from 'react-native-safe-area-context' import {GestureHandlerRootView} from 'react-native-gesture-handler' import {observer} from 'mobx-react-lite' @@ -28,7 +28,7 @@ const App = observer(() => { setRootStore(store) analytics.init(store) notifee.init(store) - SplashScreen.hide() + SplashScreen.hideAsync() Linking.getInitialURL().then((url: string | null) => { if (url) { handleLink(url) |