diff --git a/website/client/src/app.vue b/website/client/src/app.vue index 245e75706f..2b1215b6df 100644 --- a/website/client/src/app.vue +++ b/website/client/src/app.vue @@ -269,9 +269,11 @@ export default { const loadingScreen = document.getElementById('loading-screen'); if (loadingScreen) document.body.removeChild(loadingScreen); - if (this.isStaticPage || !this.isUserLoggedIn) { - this.hideLoadingScreen(); - } + this.$router.onReady(() => { + if (this.isStaticPage || !this.isUserLoggedIn) { + this.hideLoadingScreen(); + } + }); }, methods: { hideLoadingScreen () {