From c7d91bed94e8fbade088abfc27e3659eab93438b Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Wed, 7 Jul 2021 20:27:45 +0100 Subject: [PATCH] :bug: - Fixes splash screen not hiding --- src/App.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App.vue b/src/App.vue index 5d7b8f46..8930e9c9 100644 --- a/src/App.vue +++ b/src/App.vue @@ -64,8 +64,8 @@ export default { }, /* Hide splash screen, either after 2 seconds, or immediately based on user preference */ hideSplash() { - if (this.shouldShowSplash() && !this.shouldHidePageComponents()) { - setTimeout(() => { this.isLoading = false; }, splashScreenTime || 2000); + if (this.shouldShowSplash()) { + setTimeout(() => { this.isLoading = false; }, splashScreenTime || 1500); } else { this.isLoading = false; }