henaharon

Results 2 comments of henaharon

Hi! For me [this helped](https://github.com/facebook/react-native/issues/32673#issuecomment-1280884078). React have some new rules that causes the app to crash. In my case it was wrong way: useEffect(async ()=>{}) good way: useEffect(()=>{ async function...

> The return in a `useEffect` should be a function: https://reactjs.org/docs/hooks-effect.html#:~:text=Effects%20with%20Cleanup. If you're getting an error, check what you're returning in the `useEffect` Thank you so much! migrating from RN...