Skip to content

Commit f02768a

Browse files
Apply PR #37218: fix(desktop): include wslServers loading in ready state
2 parents f97e5e5 + 2a998d9 commit f02768a

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

packages/desktop/src/renderer/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,8 @@ function DesktopRoot(props: { windowState: DesktopWindowState }) {
382382
function App() {
383383
const wslServers = useWslServers()
384384
const ready = createMemo(
385-
() => !defaultServer.loading && !sidecar.loading && !windowCount.loading && !locale.loading,
385+
() =>
386+
!defaultServer.loading && !sidecar.loading && !windowCount.loading && !locale.loading && !wslServers.isLoading,
386387
)
387388
const servers = createMemo(() => {
388389
const data = initializationData(sidecar)

0 commit comments

Comments
 (0)