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 = {