chore(update): comment out check for updates for now

Fixes #10990
This commit is contained in:
Jonathan Rainville 2023-06-12 13:54:19 -04:00
parent 39a5a67937
commit f6223a1559
2 changed files with 4 additions and 2 deletions

View File

@ -16,7 +16,8 @@ SettingsContentBase {
property var store
titleRowComponentLoader.active: root.store.isProduction
// TODO when we re-implement check for updates, put isProduction back
titleRowComponentLoader.active: false //root.store.isProduction
titleRowComponentLoader.sourceComponent: StatusButton {
size: StatusBaseButton.Size.Small
text: qsTr("Check for updates")

View File

@ -505,7 +505,8 @@ Item {
target: rootStore.aboutModuleInst
function onAppVersionFetched(available: bool, version: string, url: string) {
rootStore.setLatestVersionInfo(available, version, url);
bannersLayout.processUpdateAvailable()
// TODO when we re-implement check for updates, uncomment this
// bannersLayout.processUpdateAvailable()
}
}