From 3607af7d3656f009638e0d32d650c17cb033eb3e Mon Sep 17 00:00:00 2001 From: Beingpax Date: Thu, 7 Aug 2025 23:00:11 +0545 Subject: [PATCH] feat: only show enabled options --- VoiceInk/PowerMode/PowerModePopover.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,