Parcourir la source

Align wordings

Jonas Björkert il y a 1 an
Parent
commit
f81a2256d6
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      LoopFollow/Alarm/AlarmListView.swift

+ 2 - 2
LoopFollow/Alarm/AlarmListView.swift

@@ -65,7 +65,7 @@ struct AlarmListView: View {
 
             // --- ACTIVE ALARMS SECTION ---
             if !activeAlarms.isEmpty {
-                Section(header: Text("Active Alarms")) {
+                Section(header: Text("Active")) {
                     ForEach(activeAlarms) { alarm in
                         alarmRow(for: alarm)
                     }
@@ -74,7 +74,7 @@ struct AlarmListView: View {
 
             // --- INACTIVE ALARMS SECTION ---
             if !inactiveAlarms.isEmpty {
-                Section(header: Text("Inactive Alarms")) {
+                Section(header: Text("Inactive")) {
                     ForEach(inactiveAlarms) { alarm in
                         alarmRow(for: alarm)
                             .opacity(0.6)