diff --git a/phpmon/Domain/Menu/MainMenu+Startup.swift b/phpmon/Domain/Menu/MainMenu+Startup.swift index ba125ee..314e628 100644 --- a/phpmon/Domain/Menu/MainMenu+Startup.swift +++ b/phpmon/Domain/Menu/MainMenu+Startup.swift @@ -147,8 +147,10 @@ extension MainMenu { // Check if the linked version has changed between launches of phpmon await PhpGuard().compareToLastGlobalVersion() - // Check if Valet has updates - await Valet.shared.checkForUpdates() + // Check if Valet has updates, but only if the driver display is enabled + if Preferences.isEnabled(.displayDriver) { + await Valet.shared.checkForUpdates() + } } }