desktop: use Show instead of Suspense

This commit is contained in:
Brendan Allan 2026-01-07 16:47:41 +08:00
parent 6590c1641f
commit 3c375b971e
No known key found for this signature in database
GPG key ID: 41E835AEA046A32E
2 changed files with 8 additions and 5 deletions

View file

@ -139,7 +139,7 @@ fn spawn_sidecar(app: &AppHandle, port: u32) -> CommandChild {
.args([
"-il",
"-c",
&format!("{} serve --port={}", sidecar.display(), port),
&format!("\"{}\" serve --port={}", sidecar.display(), port),
])
.spawn()
.expect("Failed to spawn opencode")