diff --git a/src/state/models/session.ts b/src/state/models/session.ts index 6b3567ff13..38ac73b5d6 100644 --- a/src/state/models/session.ts +++ b/src/state/models/session.ts @@ -361,14 +361,14 @@ export class SessionModel { * Close all sessions across all accounts. */ async logout() { - if (this.hasSession) { + /*if (this.hasSession) { this.rootStore.api.com.atproto.session.delete().catch((e: any) => { this.rootStore.log.warn( '(Minor issue) Failed to delete session on the server', e, ) }) - } + }*/ this.clearSessionTokensFromAccounts() this.rootStore.clearAll() }