diff --git a/Services/PowerProfileService.qml b/Services/PowerProfileService.qml index 950e4ee..1447227 100644 --- a/Services/PowerProfileService.qml +++ b/Services/PowerProfileService.qml @@ -52,7 +52,11 @@ Singleton { target: powerProfiles function onProfileChanged() { root.profile = powerProfiles.profile - ToastService.showNotice("Power Profile", root.profileName()) + // Only show toast if we have a valid profile name (not "Unknown") + const profileName = root.profileName() + if (profileName !== "Unknown") { + ToastService.showNotice("Power Profile", profileName) + } } } }