diff --git a/VoiceInk/PowerMode/PowerModePopover.swift b/VoiceInk/PowerMode/PowerModePopover.swift index f42a403..120f2a4 100644 --- a/VoiceInk/PowerMode/PowerModePopover.swift +++ b/VoiceInk/PowerMode/PowerModePopover.swift @@ -17,7 +17,7 @@ struct PowerModePopover: View { ScrollView { VStack(alignment: .leading, spacing: 4) { - ForEach(powerModeManager.configurations) { config in + ForEach(powerModeManager.configurations.filter { $0.isEnabled }) { config in PowerModeRow( config: config, isSelected: selectedConfig?.id == config.id,