Browse Source

removing internet connection verificatrion

master
analuizaff 3 years ago
parent
commit
30ae6b55d2
  1. 7
      src/App.js

7
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 (
<AppLoading
startAsync={restoreUser}
@ -60,7 +59,7 @@ export default function App() {
onError={(e) => 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() {
</CurrentLocationProvider>
</AuthContext.Provider>
);
} else return <NoInternetConnectionScreen />;
}
}
Loading…
Cancel
Save