diff options
Diffstat (limited to 'src/App.web.tsx')
-rw-r--r-- | src/App.web.tsx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/App.web.tsx b/src/App.web.tsx index 87909a276..40ceb6942 100644 --- a/src/App.web.tsx +++ b/src/App.web.tsx @@ -45,17 +45,17 @@ import {listenSessionDropped} from './state/events' function InnerApp() { const [isReady, setIsReady] = React.useState(false) const {currentAccount} = useSession() - const {initSession} = useSessionApi() + const {resumeSession} = useSessionApi() const theme = useColorModeTheme() const {_} = useLingui() useIntentHandler() // init useEffect(() => { - async function resumeSession(account?: SessionAccount) { + async function onLaunch(account?: SessionAccount) { try { if (account) { - await initSession(account) + await resumeSession(account) } } catch (e) { logger.error(`session: resumeSession failed`, {message: e}) @@ -64,8 +64,8 @@ function InnerApp() { } } const account = readLastActiveAccount() - resumeSession(account) - }, [initSession]) + onLaunch(account) + }, [resumeSession]) useEffect(() => { return listenSessionDropped(() => { |