chore: tweak update ready notification wording
All checks were successful
Build & Release / build (push) Successful in 2m29s

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
MiTHRAL 2026-04-21 19:59:44 -04:00
parent 6ada11778a
commit 5e94d75a3e

View file

@ -96,7 +96,7 @@ async function downloadAndInstall(url: string, version: string) {
});
});
const n = notify("Update Ready", `Sanctum ${version} is installed — click to restart.`);
const n = notify("Update Ready", `Sanctum ${version} is ready — click to restart.`);
n.on("click", () => { app.relaunch(); app.exit(0); });
}