diff --git a/frontend/src/App.vue b/frontend/src/App.vue index d1b0544010..dc66abd26b 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -79,6 +79,7 @@ import TermsAndConditions from './pages/TermsAndConditions.vue' import UnverifiedEmail from './pages/UnverifiedEmail.vue' import { useContextStore } from '@/stores/context.js' +import { useProductBrokersStore } from '@/stores/product-brokers.js' import { useUxDrawersStore } from '@/stores/ux-drawers.js' export default { @@ -142,7 +143,7 @@ export default { }, mounted () { this.$store.dispatch('account/checkState') - this.$store.dispatch('product/checkFlags') + useProductBrokersStore().checkFlags() }, methods: { ...mapActions(useContextStore, ['updateRoute']) diff --git a/frontend/src/layouts/Platform.vue b/frontend/src/layouts/Platform.vue index 66c81e287a..8938a4d778 100644 --- a/frontend/src/layouts/Platform.vue +++ b/frontend/src/layouts/Platform.vue @@ -63,7 +63,7 @@