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 }) {