chore: generate

This commit is contained in:
opencode-agent[bot]
2026-07-31 08:03:42 +00:00
parent 5480afd0c8
commit 3cb93e86a6
4 changed files with 16 additions and 20 deletions
+1 -2
View File
@@ -3,8 +3,7 @@ import { fileURLToPath } from "node:url"
export function resolveExternalURL(value: string) {
if (!URL.canParse(value)) return undefined
const url = new URL(value)
if (url.protocol === "http:" || url.protocol === "https:" || url.protocol === "mailto:")
return url.href
if (url.protocol === "http:" || url.protocol === "https:" || url.protocol === "mailto:") return url.href
return undefined
}
+1 -2
View File
@@ -369,8 +369,7 @@ function DesktopRoot(props: { windowState: DesktopWindowState }) {
function App() {
const wslServers = useWslServers()
const ready = createMemo(
() =>
!defaultServer.loading && !sidecar.loading && !locale.loading && !wslServers.isLoading,
() => !defaultServer.loading && !sidecar.loading && !locale.loading && !wslServers.isLoading,
)
const servers = createMemo(() => {
const data = initializationData(sidecar)