@fto-consult/expo-ui 8.14.3 → 8.14.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/AppEntry/index.js +1 -2
package/package.json
CHANGED
package/src/AppEntry/index.js
CHANGED
@@ -39,7 +39,6 @@ import {Provider as PaperProvider,Portal } from 'react-native-paper';
|
|
39
39
|
import FontIcon from "$ecomponents/Icon/Font";
|
40
40
|
import useContext from "$econtext/hooks";
|
41
41
|
import { StyleSheet } from "react-native";
|
42
|
-
import Logo from "$ecomponents/Logo";
|
43
42
|
import AppEntryRootView from "./RootView";
|
44
43
|
import { SafeAreaProvider } from 'react-native-safe-area-context';
|
45
44
|
|
@@ -253,7 +252,7 @@ function App({init:initApp,initialRouteName:appInitialRouteName,children}) {
|
|
253
252
|
containerProps.onStateChange(state,...rest);
|
254
253
|
}
|
255
254
|
}}
|
256
|
-
fallback = {React.isValidElement(containerProps.fallback) ? containerProps.fallback :
|
255
|
+
fallback = {React.isValidElement(containerProps.fallback) ? containerProps.fallback : null}
|
257
256
|
>
|
258
257
|
<Navigation
|
259
258
|
initialRouteName = {defaultStr(hasGetStarted ? appInitialRouteName : getStartedRouteName,"Home")}
|