From 06e124a422cc77723c2843ebf94be910cb91be69 Mon Sep 17 00:00:00 2001 From: DmitrySychugov Date: Fri, 26 Apr 2024 15:54:07 +0500 Subject: [PATCH] Client: added indexingStore --- packages/client/src/store/index.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/client/src/store/index.js b/packages/client/src/store/index.js index d6168208e0..b99d85cc87 100644 --- a/packages/client/src/store/index.js +++ b/packages/client/src/store/index.js @@ -79,6 +79,7 @@ import ImportAccountsStore from "./ImportAccountsStore"; import PluginStore from "./PluginStore"; import InfoPanelStore from "./InfoPanelStore"; import CampaignsStore from "./CampaignsStore"; +import IndexingStore from "./IndexingStore"; const selectedFolderStore = new SelectedFolderStore(settingsStore); @@ -104,6 +105,7 @@ const setupStore = new SettingsSetupStore( const confirmStore = new ConfirmStore(); const backupStore = new BackupStore(); const commonStore = new CommonStore(settingsStore); +const indexingStore = new IndexingStore(); const ssoStore = new SsoFormStore(); @@ -231,6 +233,7 @@ const contextOptionsStore = new ContextOptionsStore( infoPanelStore, currentTariffStatusStore, userStore, + indexingStore, ); const hotkeyStore = new HotkeyStore( @@ -347,6 +350,7 @@ const store = { pluginStore, storageManagement, campaignsStore, + indexingStore, }; export default store;