From 0ac3328121372b9bf5e1a7c4032142d517bdb976 Mon Sep 17 00:00:00 2001 From: addison Date: Tue, 16 Nov 2021 10:14:26 -0500 Subject: [PATCH] [bug] Init the state service on start --- src/app/services.module.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/services.module.ts b/src/app/services.module.ts index 44cc8da4..964aae0b 100644 --- a/src/app/services.module.ts +++ b/src/app/services.module.ts @@ -157,6 +157,7 @@ containerService.attachToGlobal(window); export function initFactory(): Function { return async () => { + await stateService.init(); await environmentService.setUrlsFromStorage(); syncService.fullSync(true); await vaultTimeoutService.init(true);