From 41caa76b28bf2bdb680a2f4a25e9304f80e298c0 Mon Sep 17 00:00:00 2001 From: Patrick FIc Date: Wed, 10 Sep 2025 14:59:24 -0700 Subject: [PATCH] Remove notification for update. --- package.json | 2 +- src/main/util/checkForAppUpdates.ts | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index da9b6ff..5fa92fa 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bodyshop-desktop", - "version": "1.0.6-alpha.1", + "version": "1.0.6-beta.2", "description": "Shop Management System Partner", "main": "./out/main/index.js", "author": "Convenient Brands, LLC", diff --git a/src/main/util/checkForAppUpdates.ts b/src/main/util/checkForAppUpdates.ts index 1cb9754..06cc343 100644 --- a/src/main/util/checkForAppUpdates.ts +++ b/src/main/util/checkForAppUpdates.ts @@ -12,10 +12,7 @@ async function checkForAppUpdatesContinuously(): Promise { } async function checkForAppUpdates(): Promise { await setReleaseChannel(); - autoUpdater.checkForUpdatesAndNotify({ - title: "Shop Partner Update", - body: "A new version of Shop Partner is available. Click to update.", - }); + autoUpdater.checkForUpdates(); } export { checkForAppUpdates, checkForAppUpdatesContinuously };