diff options
Diffstat (limited to 'src/state/session/types.ts')
-rw-r--r-- | src/state/session/types.ts | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/state/session/types.ts b/src/state/session/types.ts index a2a9f8cf8..b3252f777 100644 --- a/src/state/session/types.ts +++ b/src/state/session/types.ts @@ -6,7 +6,6 @@ export type SessionAccount = PersistedAccount export type SessionStateContext = { accounts: SessionAccount[] currentAccount: SessionAccount | undefined - isSwitchingAccounts: boolean hasSession: boolean } export type SessionApiContext = { @@ -46,10 +45,6 @@ export type SessionApiContext = { clearCurrentAccount: () => void initSession: (account: SessionAccount) => Promise<void> removeAccount: (account: SessionAccount) => void - selectAccount: ( - account: SessionAccount, - logContext: LogEvents['account:loggedIn']['logContext'], - ) => Promise<void> updateCurrentAccount: ( account: Partial< Pick< |