From 7806df8d8af2ddc145a5f2c64197d434890d17bf Mon Sep 17 00:00:00 2001 From: Samuel K Date: Wed, 27 May 2026 18:44:34 -0500 Subject: [PATCH] fix(ide): use relative path for IDE icons so they load under file:// Absolute /icons/... paths resolve to filesystem root in packaged Electron, so none of the IDE icons rendered. Match the existing ProviderIcon convention with ./icons/... instead. --- .../src/lib/components/workspace/WorkspaceWizard.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop/src/renderer/src/lib/components/workspace/WorkspaceWizard.svelte b/desktop/src/renderer/src/lib/components/workspace/WorkspaceWizard.svelte index 8d3241ad7..306eda3c2 100644 --- a/desktop/src/renderer/src/lib/components/workspace/WorkspaceWizard.svelte +++ b/desktop/src/renderer/src/lib/components/workspace/WorkspaceWizard.svelte @@ -40,7 +40,7 @@ const STEPS: { id: Step; label: string }[] = [ { id: "launch", label: "Launch" }, ] -const ideIcon = (name: string) => `/icons/ides/${name}.svg` +const ideIcon = (name: string) => `./icons/ides/${name}.svg` const IDE_GROUPS = [ {