chore: rename core root store

This commit is contained in:
Aaryan Khandelwal 2024-06-13 12:57:07 +05:30
parent efbd23838e
commit 98a0742d5c
2 changed files with 2 additions and 2 deletions

View File

@ -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() {

View File

@ -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;