From 5e94d75a3effdd803e854985d3a8a7c123fa1945 Mon Sep 17 00:00:00 2001 From: MiTHRAL Date: Tue, 21 Apr 2026 19:59:44 -0400 Subject: [PATCH] chore: tweak update ready notification wording Co-Authored-By: Claude Sonnet 4.6 --- src/native/updater.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/native/updater.ts b/src/native/updater.ts index 4096558..98ccff3 100644 --- a/src/native/updater.ts +++ b/src/native/updater.ts @@ -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); }); }