From 20a06c586f4f8eacb7a48aa25f9494aa33dfa9f1 Mon Sep 17 00:00:00 2001 From: taeng0204 Date: Mon, 4 May 2026 10:02:24 +0900 Subject: [PATCH] fix(dashboard): render null instead of flashing spinner during plugin load --- web/src/App.tsx | 19 ++++--------------- 1 file changed, 4 insertions(+), 15 deletions(-) diff --git a/web/src/App.tsx b/web/src/App.tsx index 7598e169bc..7e1ca19f13 100644 --- a/web/src/App.tsx +++ b/web/src/App.tsx @@ -81,22 +81,11 @@ function RootRedirect() { } function UnknownRouteFallback({ pluginsLoading }: { pluginsLoading: boolean }) { - if (!pluginsLoading) { - return ; + if (pluginsLoading) { + // Render nothing during the plugin-load window — a spinner here would just flash. + return null; } - - return ( -
-
- - Loading dashboard plugins… -
-
- ); + return ; } const CHAT_NAV_ITEM: NavItem = {