From 97b54b51c6580737a561b48125af2884b23548f3 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Sat, 9 Dec 2023 17:10:12 -0600 Subject: Add back isInitialLoad to session (#2155) --- src/state/session/index.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/state/session/index.tsx') diff --git a/src/state/session/index.tsx b/src/state/session/index.tsx index d4cd2fcd2..56208bc70 100644 --- a/src/state/session/index.tsx +++ b/src/state/session/index.tsx @@ -28,6 +28,7 @@ export function getAgent() { export type SessionAccount = persisted.PersistedAccount export type SessionState = { + isInitialLoad: boolean isSwitchingAccounts: boolean accounts: SessionAccount[] currentAccount: SessionAccount | undefined @@ -75,6 +76,7 @@ export type ApiContext = { } const StateContext = React.createContext({ + isInitialLoad: true, isSwitchingAccounts: false, accounts: [], currentAccount: undefined, @@ -150,6 +152,7 @@ export function Provider({children}: React.PropsWithChildren<{}>) { const queryClient = useQueryClient() const isDirty = React.useRef(false) const [state, setState] = React.useState({ + isInitialLoad: true, isSwitchingAccounts: false, accounts: persisted.get('session').accounts, currentAccount: undefined, // assume logged out to start @@ -434,6 +437,11 @@ export function Provider({children}: React.PropsWithChildren<{}>) { } } catch (e) { logger.error(`session: resumeSession failed`, {error: e}) + } finally { + setState(s => ({ + ...s, + isInitialLoad: false, + })) } }, [initSession], -- cgit 1.4.1