From 73ca9f7d2ec02ac76ea6aeaa8454177f76f8423b Mon Sep 17 00:00:00 2001 From: Pulse Monitor Date: Wed, 10 Sep 2025 16:51:28 +0000 Subject: [PATCH] fix: remove development bypass that prevented version info from loading The App.tsx had leftover debug code that would skip auth entirely and return early, preventing the version info from ever being fetched. This caused 'Version: loading...' to appear permanently in the footer. --- frontend-modern/src/App.tsx | 9 --------- 1 file changed, 9 deletions(-) diff --git a/frontend-modern/src/App.tsx b/frontend-modern/src/App.tsx index d7f4171ae..490d24e60 100644 --- a/frontend-modern/src/App.tsx +++ b/frontend-modern/src/App.tsx @@ -152,15 +152,6 @@ function App() { console.log('[App] onMount triggered, starting auth check...'); console.log('[App] Current location:', window.location.href); - // For development, just skip auth entirely - console.log('[App] Development mode - skipping auth'); - setIsLoading(false); - setNeedsAuth(false); - if (!wsStore()) { - setWsStore(getGlobalWebSocketStore()); - } - return; - // Add a timeout fallback - if auth check takes too long, just proceed const timeoutId = setTimeout(() => { console.error('[App] Auth check timeout - proceeding without auth');