diff options
author | Eric Bailey <git@esb.lol> | 2023-12-07 12:25:55 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-07 10:25:55 -0800 |
commit | 261a935747019d21981a8f3cf0cfd7d83b320cde (patch) | |
tree | 5e2f20aeb6e8f257209b10632bf573f9654714dc /src/App.native.tsx | |
parent | a0b9fd799b44ba9d7e81cadb089fb0fda636e3b3 (diff) | |
download | voidsky-261a935747019d21981a8f3cf0cfd7d83b320cde.tar.zst |
More session improvements (#2129)
* More session improvements * Drop resume session retries from 3 to 1 --------- Co-authored-by: Paul Frazee <pfrazee@gmail.com>
Diffstat (limited to 'src/App.native.tsx')
-rw-r--r-- | src/App.native.tsx | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/App.native.tsx b/src/App.native.tsx index 9b9287789..538e9b32d 100644 --- a/src/App.native.tsx +++ b/src/App.native.tsx @@ -39,7 +39,7 @@ SplashScreen.preventAutoHideAsync() function InnerApp() { const colorMode = useColorMode() - const {isInitialLoad, currentAccount} = useSession() + const {currentAccount} = useSession() const {resumeSession} = useSessionApi() // init @@ -53,16 +53,6 @@ function InnerApp() { resumeSession(account) }, [resumeSession]) - // show nothing prior to init - if (isInitialLoad) { - // TODO add a loading state - return null - } - - /* - * Session and initial state should be loaded prior to rendering below. - */ - return ( <React.Fragment // Resets the entire tree below when it changes: |