@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fto-consult/expo-ui",
3
- "version": "8.14.3",
3
+ "version": "8.14.4",
4
4
  "description": "Bibliothèque de composants UI Expo,react-native",
5
5
  "scripts": {
6
6
  "clear-npx-cache": "npx clear-npx-cache",
@@ -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 : <Logo.Progress/>}
255
+ fallback = {React.isValidElement(containerProps.fallback) ? containerProps.fallback : null}
257
256
  >
258
257
  <Navigation
259
258
  initialRouteName = {defaultStr(hasGetStarted ? appInitialRouteName : getStartedRouteName,"Home")}