init sessionstore outside of context
This commit is contained in:
parent
b840ff65ff
commit
fb4caa3f13
1 changed files with 2 additions and 1 deletions
|
|
@ -31,6 +31,7 @@ import { IntegrationsStore } from "./integrationsStore";
|
|||
import ProjectsStore from './projectsStore';
|
||||
|
||||
export const projectStore = new ProjectsStore();
|
||||
export const sessionStore = new SessionStore();
|
||||
|
||||
export class RootStore {
|
||||
dashboardStore: DashboardStore;
|
||||
|
|
@ -72,7 +73,7 @@ export class RootStore {
|
|||
this.auditStore = new AuditStore();
|
||||
this.errorStore = new ErrorStore();
|
||||
this.notificationStore = new NotificationStore();
|
||||
this.sessionStore = new SessionStore();
|
||||
this.sessionStore = sessionStore;
|
||||
this.notesStore = new NotesStore();
|
||||
this.recordingsStore = new RecordingsStore();
|
||||
this.assistMultiviewStore = new AssistMultiviewStore();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue