diff --git a/src/renderer/src/App.tsx b/src/renderer/src/App.tsx index 5abdbf6b9..f556e1095 100644 --- a/src/renderer/src/App.tsx +++ b/src/renderer/src/App.tsx @@ -5,7 +5,6 @@ import { Outlet } from "react-router-dom" import { env } from "../../env.js" import { useAppIsReady } from "./atoms/app" import { useUISettingKey } from "./atoms/settings/ui" -import { RootPortal } from "./components/ui/portal/index.js" import { applyAfterReadyCallbacks } from "./initialize/queue.js" import { appLog } from "./lib/log" import { cn, getOS } from "./lib/utils" @@ -46,19 +45,19 @@ function App() { const windowsElectron = window.electron && getOS() === "Windows" return ( - - {window.electron && ( -
- {windowsElectron && } -
- )} -
+ + {window.electron && ( +
+ {windowsElectron && } +
+ )} +
)