fix: remove update check from the ui

it is no longer necessary
This commit is contained in:
2025-04-12 11:59:02 +00:00
parent f3016eb029
commit 7db36b7bc0
4 changed files with 25 additions and 52 deletions

View File

@ -11,7 +11,6 @@ use tauri::AppHandle;
pub struct GlobalState {
pub remain_open: bool,
pub has_updated: bool,
}
pub struct AppData {
@ -50,7 +49,7 @@ impl AppData {
profile: profile,
pkgs: PackageStore::new(apph.clone()),
cfg,
state: GlobalState { remain_open: true, has_updated: false },
state: GlobalState { remain_open: true },
patch_set
}
}