Power Mode sorting

This commit is contained in:
Beingpax 2025-06-05 16:54:24 +05:45
parent b09443bc09
commit eb46afeb72

View File

@ -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,