fix(desktop): include wslServers loading in ready state (#37218)
This commit is contained in:
parent
17544802c3
commit
590a11ed98
1 changed files with 2 additions and 1 deletions
|
|
@ -382,7 +382,8 @@ function DesktopRoot(props: { windowState: DesktopWindowState }) {
|
|||
function App() {
|
||||
const wslServers = useWslServers()
|
||||
const ready = createMemo(
|
||||
() => !defaultServer.loading && !sidecar.loading && !windowCount.loading && !locale.loading,
|
||||
() =>
|
||||
!defaultServer.loading && !sidecar.loading && !windowCount.loading && !locale.loading && !wslServers.isLoading,
|
||||
)
|
||||
const servers = createMemo(() => {
|
||||
const data = initializationData(sidecar)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue