diff --git a/studio/frontend/src/app/provider.tsx b/studio/frontend/src/app/provider.tsx index 9232defd70..8abb1df63e 100644 --- a/studio/frontend/src/app/provider.tsx +++ b/studio/frontend/src/app/provider.tsx @@ -395,9 +395,7 @@ function TauriWrapper({ children }: { children: ReactNode }) { ); } - const showApp = status === "running"; - const desktopBooting = status === "running" && !desktopAuthReady; - const showInteractiveApp = showApp && desktopAuthReady; + const showApp = status === "running" && desktopAuthReady; const startupStatus = status === "running" ? "starting" : status; const startupProgressDetail = progressDetail; const usesCustomTitlebar = shouldUseCustomWindowTitlebar(); @@ -409,28 +407,12 @@ function TauriWrapper({ children }: { children: ReactNode }) { - {showInteractiveApp ? ( - - ) : null} + - {showInteractiveApp ? : null} - {showInteractiveApp ? children : null} - {desktopBooting ? ( -
-
-
Preparing Unsloth
-
- The local backend is ready. Signing in to your desktop session - before loading chats. -
-
-
- Signing in to desktop session... -
-
- ) : null} + + {children} ) : ( " in source + assert "{children}" in source + + def test_full_app_layout_uses_its_own_initialized_marker(): source = APP_PROVIDER.read_text(encoding = "utf-8")