From 614c9b70b52c833df830afc24eea56f877d71ca2 Mon Sep 17 00:00:00 2001 From: DIYgod Date: Thu, 13 Feb 2025 18:08:40 +0800 Subject: [PATCH] feat: update updater channel --- apps/main/src/env.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/apps/main/src/env.ts b/apps/main/src/env.ts index 37e2b9c7f..f6110d7d9 100644 --- a/apps/main/src/env.ts +++ b/apps/main/src/env.ts @@ -9,9 +9,7 @@ export const isNightlyBuild = appVersion.includes("nightly") export const channel: "development" | "beta" | "alpha" | "stable" | "nightly" = isDev ? "development" - : isNightlyBuild - ? "nightly" - : "beta" + : "stable" const { platform } = process export const isMacOS = platform === "darwin"