refactor(editor): Detangle users store from settings store (no-changelog) (#16510)

This commit is contained in:
Alex Grozav
2025-06-20 13:01:44 +03:00
committed by GitHub
parent f598b3bf00
commit 4f4fa5e4af
6 changed files with 39 additions and 36 deletions

View File

@@ -69,7 +69,9 @@ export async function initializeCore() {
void useExternalHooks().run('app.mount');
if (!settingsStore.isPreviewMode) {
await usersStore.initialize();
await usersStore.initialize({
quota: settingsStore.userManagement.quota,
});
void versionsStore.checkForNewVersions();
}