From a00ee440bb4f1a16fbef028612966c676c6baecb Mon Sep 17 00:00:00 2001 From: sriram veeraghanta Date: Sat, 11 May 2024 17:47:54 +0530 Subject: [PATCH] fix: user store positioning --- web/store/root.store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/store/root.store.ts b/web/store/root.store.ts index a2b44093ef..b9a9fccd43 100644 --- a/web/store/root.store.ts +++ b/web/store/root.store.ts @@ -51,6 +51,7 @@ export class RootStore { constructor() { this.router = new RouterStore(); + this.user = new UserStore(this); this.workspaceRoot = new WorkspaceRootStore(this); this.projectRoot = new ProjectRootStore(this); this.memberRoot = new MemberRootStore(this); @@ -69,7 +70,6 @@ export class RootStore { this.theme = new ThemeStore(this); this.eventTracker = new EventTrackerStore(this); this.instance = new InstanceStore(); - this.user = new UserStore(this); // inbox this.projectInbox = new ProjectInboxStore(this); this.projectPages = new ProjectPageStore(this);