init sessionstore outside of context

This commit is contained in:
nick-delirium 2024-09-19 15:03:06 +02:00
parent b840ff65ff
commit fb4caa3f13
No known key found for this signature in database
GPG key ID: 93ABD695DF5FDBA0

View file

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