Skip to content
This repository was archived by the owner on Jun 24, 2025. It is now read-only.

Commit c0b746e

Browse files
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.
1 parent a13e4d5 commit c0b746e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/server/src/services/window.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ async function configureWebContents(webContents: WebContents, spellcheckEnabled:
257257
}
258258

259259
function getIcon() {
260-
return path.join(RESOURCE_DIR, "images/app-icons/png/256x256" + (isDev ? "-dev" : "") + ".png");
260+
return path.join(RESOURCE_DIR, "../public/assets/icon.png");
261261
}
262262

263263
async function createSetupWindow() {

0 commit comments

Comments
 (0)