From 98a0742d5cc2e9e61b82f0879a5ea0d6db53a801 Mon Sep 17 00:00:00 2001 From: Aaryan Khandelwal Date: Thu, 13 Jun 2024 12:57:07 +0530 Subject: [PATCH] chore: rename core root store --- web/ce/store/root.store.ts | 2 +- web/core/store/root.store.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/web/ce/store/root.store.ts b/web/ce/store/root.store.ts index da859a585..710462e13 100644 --- a/web/ce/store/root.store.ts +++ b/web/ce/store/root.store.ts @@ -1,5 +1,5 @@ // store -import { RootStore as CoreRootStore } from "@/store/root.store"; +import { CoreRootStore } from "@/store/root.store"; export class RootStore extends CoreRootStore { constructor() { diff --git a/web/core/store/root.store.ts b/web/core/store/root.store.ts index 9a7f5f244..c24ed1d62 100644 --- a/web/core/store/root.store.ts +++ b/web/core/store/root.store.ts @@ -26,7 +26,7 @@ import { IWorkspaceRootStore, WorkspaceRootStore } from "./workspace"; enableStaticRendering(typeof window === "undefined"); -export class RootStore { +export class CoreRootStore { workspaceRoot: IWorkspaceRootStore; projectRoot: IProjectRootStore; memberRoot: IMemberRootStore;