diff --git a/web/ASC.Web.Client/src/store/index.js b/web/ASC.Web.Client/src/store/index.js index 938d7b2878..7cafda9655 100644 --- a/web/ASC.Web.Client/src/store/index.js +++ b/web/ASC.Web.Client/src/store/index.js @@ -2,16 +2,19 @@ import authStore from "@appserver/common/store/AuthStore"; import PaymentStore from "./PaymentStore"; import WizardStore from "./WizardStore"; import SettingsSetupStore from "./SettingsSetupStore"; +import ConfirmStore from "./ConfirmStore"; const paymentStore = new PaymentStore(); const wizardStore = new WizardStore(); const setupStore = new SettingsSetupStore(); +const confirmStore = new ConfirmStore(); const store = { auth: authStore, payments: paymentStore, wizard: wizardStore, setup: setupStore, + confirm: confirmStore, }; export default store;