We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af2e9ed commit 900de7bCopy full SHA for 900de7b
packages/cloud/src/SettingsService.ts
@@ -39,6 +39,11 @@ export class SettingsService {
39
public initialize(): void {
40
this.loadCachedSettings()
41
42
+ // Clear cached settings if we have missed a log out.
43
+ if (this.authService.getState() == "logged-out" && this.settings) {
44
+ this.removeSettings()
45
+ }
46
+
47
this.authService.on("active-session", () => {
48
this.timer.start()
49
})
0 commit comments