fix(desktop): proper icon path

The previous value points to a file that no longer exists in the
release builds. This file also only exists in the flake build.
pull/2329/head
FliegendeWurst 2025-06-16 08:29:21 +07:00
parent a13e4d5d79
commit c0b746e03f
1 changed files with 1 additions and 1 deletions

@ -257,7 +257,7 @@ async function configureWebContents(webContents: WebContents, spellcheckEnabled:
}
function getIcon() {
return path.join(RESOURCE_DIR, "images/app-icons/png/256x256" + (isDev ? "-dev" : "") + ".png");
return path.join(RESOURCE_DIR, "../public/assets/icon.png");
}
async function createSetupWindow() {