From 2e9d1419523d3bc4da26c97dc8ba0d9afde4747f Mon Sep 17 00:00:00 2001 From: Robyn MacCallum Date: Thu, 10 Feb 2022 19:26:20 -0500 Subject: [PATCH] Remove call to tokenService.clear() from logout --- src/app/app.component.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app/app.component.ts b/src/app/app.component.ts index f80a5a64..726a129e 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -210,7 +210,6 @@ export class AppComponent implements OnDestroy, OnInit { await Promise.all([ this.eventService.clearEvents(), this.syncService.setLastSync(new Date(0)), - this.tokenService.clearToken(), this.cryptoService.clearKeys(), this.settingsService.clear(userId), this.cipherService.clear(userId),