diff --git a/src/App.jsx b/src/App.jsx
index 7414cf3dcb6aeb57719b5eab0b8808e66f07297a..9062d072371c0c47e5adb4a8e951bf550c9f0b6a 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}>