From 8a6714d0921a5b48a537d63249f4521f36decf1f Mon Sep 17 00:00:00 2001
From: xaralis <filip.varecha@fragaria.cz>
Date: Mon, 4 Jan 2021 11:32:36 +0100
Subject: [PATCH] feat: minor changes in bootup sequence

---
 src/App.jsx | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/src/App.jsx b/src/App.jsx
index 7414cf3..9062d07 100644
--- a/src/App.jsx
+++ b/src/App.jsx
@@ -89,10 +89,6 @@ const LoadingComponent = (
 );
 
 const BaseApp = () => {
-  loadProgram.read();
-  loadAnnouncements.read();
-  loadPosts.read();
-
   useEffect(() => {
     initializeWSChannel.run();
   }, []);
@@ -128,6 +124,9 @@ const BaseApp = () => {
 
 const ConfiguredApp = () => {
   loadConfig.read();
+  loadProgram.read();
+  loadAnnouncements.read();
+  loadPosts.read();
 
   return (
     <Suspense fallback={LoadingComponent}>
-- 
GitLab