diff options
Diffstat (limited to 'src/state/models/root-store.ts')
-rw-r--r-- | src/state/models/root-store.ts | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/state/models/root-store.ts b/src/state/models/root-store.ts index 2af99e47c..58cad77b9 100644 --- a/src/state/models/root-store.ts +++ b/src/state/models/root-store.ts @@ -78,7 +78,6 @@ export class RootStoreModel { serialize(): unknown { return { appInfo: this.appInfo, - log: this.log.serialize(), session: this.session.serialize(), me: this.me.serialize(), shell: this.shell.serialize(), @@ -93,9 +92,6 @@ export class RootStoreModel { this.setAppInfo(appInfoParsed.data) } } - if (hasProp(v, 'log')) { - this.log.hydrate(v.log) - } if (hasProp(v, 'me')) { this.me.hydrate(v.me) } |