diff --git a/src/App.js b/src/App.js index 6600f32..2a81ae2 100644 --- a/src/App.js +++ b/src/App.js @@ -43,7 +43,6 @@ export default function App() { } }, [pluviometerStation]); - // console.log(pluviometerStation); const restoreUser = async () => { const storageUser = await authStorage.getUser(); @@ -52,7 +51,7 @@ export default function App() { global.location = await getLocation(); }; - if (!isReady && netInfo.isInternetReachable) { + if (!isReady) { return ( console.log(e)} /> ); - } else if (netInfo.isInternetReachable) { + } else { if (global.formsSockets === undefined) global.formsSockets = useFiltering(global.location || global.defaultLocation); @@ -83,5 +82,5 @@ export default function App() { ); - } else return ; + } }