Remove notification for update.

This commit is contained in:
Patrick FIc
2025-09-10 14:59:24 -07:00
parent 45bc12a2f5
commit 41caa76b28
2 changed files with 2 additions and 5 deletions

View File

@@ -12,10 +12,7 @@ async function checkForAppUpdatesContinuously(): Promise<void> {
}
async function checkForAppUpdates(): Promise<void> {
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 };