aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/workspaces/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/features/workspaces/index.ts')
-rw-r--r--src/features/workspaces/index.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/features/workspaces/index.ts b/src/features/workspaces/index.ts
index 25975936a..cbe5bb5fd 100644
--- a/src/features/workspaces/index.ts
+++ b/src/features/workspaces/index.ts
@@ -3,6 +3,7 @@ import WorkspacesStore from './store';
3export const workspaceStore = new WorkspacesStore(); 3export const workspaceStore = new WorkspacesStore();
4 4
5export default function initWorkspaces(stores, actions) { 5export default function initWorkspaces(stores, actions) {
6 // eslint-disable-next-line no-param-reassign
6 stores.workspaces = workspaceStore; 7 stores.workspaces = workspaceStore;
7 workspaceStore.start(stores, actions); 8 workspaceStore.start(stores, actions);
8} 9}