lbxa / o

This is top-secret stuff
https://onex.social
MIT License
0 stars 0 forks source link

fix/mobile: runtime error is crashing app on startup #53

Closed lbxa closed 1 week ago

lbxa commented 1 week ago

Root cause: root navigator has not mounted yet when the fetchFn attempts to re-route to the (auth)/login.tsx page.

const rootNavigation = useRootNavigationState();

if (rootNavigation.key) {
    router.replace("(auth)/login");
 }

Fix is quite simple.