Skip to content
Snippets Groups Projects
Commit 8a6714d0 authored by xaralis's avatar xaralis
Browse files

feat: minor changes in bootup sequence

parent 63d2d808
No related branches found
No related tags found
No related merge requests found
......@@ -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}>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment