From eb46afeb7276fe85cd84072a1e8404136258173a Mon Sep 17 00:00:00 2001 From: Beingpax Date: Thu, 5 Jun 2025 16:54:24 +0545 Subject: [PATCH] Power Mode sorting --- VoiceInk/PowerMode/PowerModeViewComponents.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VoiceInk/PowerMode/PowerModeViewComponents.swift b/VoiceInk/PowerMode/PowerModeViewComponents.swift index dd82ba7..2b77bc2 100644 --- a/VoiceInk/PowerMode/PowerModeViewComponents.swift +++ b/VoiceInk/PowerMode/PowerModeViewComponents.swift @@ -58,7 +58,7 @@ struct PowerModeConfigurationsGrid: View { var body: some View { LazyVStack(spacing: 12) { - ForEach(powerModeManager.configurations.sorted(by: { $0.name.localizedCaseInsensitiveCompare($1.name) == .orderedAscending })) { config in + ForEach(powerModeManager.configurations) { config in ConfigurationRow( config: config, isEditing: false,