diff options
Diffstat (limited to 'src/state/index.ts')
-rw-r--r-- | src/state/index.ts | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/state/index.ts b/src/state/index.ts index 7c97ce294..496f3631d 100644 --- a/src/state/index.ts +++ b/src/state/index.ts @@ -1,5 +1,9 @@ import {onSnapshot} from 'mobx-state-tree' -import {RootStoreModel, RootStore} from './models/root-store' +import { + RootStoreModel, + RootStore, + createDefaultRootStore, +} from './models/root-store' import {Environment} from './env' import * as storage from './storage' @@ -15,7 +19,7 @@ export async function setupState() { rootStore = RootStoreModel.create(data, env) } catch (e) { console.error('Failed to load state from storage', e) - rootStore = RootStoreModel.create({}, env) + rootStore = RootStoreModel.create(createDefaultRootStore(), env) } // track changes & save to storage |