Web: Common: Removed comments

This commit is contained in:
Alexey Safronov 2021-02-05 11:29:19 +03:00
parent ffbc9cb57e
commit 91d07ca362

View File

@ -51,13 +51,6 @@ class AuthStore {
}
return Promise.all(requests);
// await this.settingsStore.init();
// if (!this.isAuthenticated) return;
// await this.userStore.init();
// await this.moduleStore.init();
};
get isLoaded() {
@ -168,9 +161,11 @@ class AuthStore {
setUserStore = (store) => {
this.userStore = store;
};
setModuleStore = (store) => {
this.moduleStore = store;
};
setSettingsStore = (store) => {
this.settingsStore = store;
};