diff --git a/src/components/appContent.vue b/src/components/appContent.vue index d54e6e49..4bce163d 100644 --- a/src/components/appContent.vue +++ b/src/components/appContent.vue @@ -223,23 +223,12 @@ export default { created: function() { if (this.$store.getters.ready) { - this.updatePlugins(); + // Update plugins + this.updatePlugins().then(() => { + // Start initialisation modals + this.startModals(); + }); } - // Watch for host 'ready', then update status - this.unwatchStoreFunction = this.$store.watch( - (state, getters) => { - return getters.ready; - }, - ready => { - if (ready) { - // Update plugins - this.updatePlugins().then(() => { - // Start initialisation modals - this.startModals(); - }); - } - } - ); }, mounted() {