From 559040e26021ff24b2b3fd5de005e56296f77bc2 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Mon, 16 Sep 2024 03:08:26 +0300 Subject: [PATCH] WHY IS THIS HAPPENING --- src/App.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App.js b/src/App.js index e1ce88080..94083f22e 100644 --- a/src/App.js +++ b/src/App.js @@ -47,9 +47,9 @@ export default { watch: { themeApplied (value) { this.$nextTick(() => { - document.querySelector('#app').classList.remove('hidden') - document.querySelector('#splash').classList.add('hidden') document.querySelector('#status').textContent = this.$t('splash.fun_' + Math.ceil(Math.random() * 4)) + document.querySelector('#splash').classList.add('hidden') + document.querySelector('#app').classList.remove('hidden') }) } },