Jonas Björkert 1 год назад
Родитель
Сommit
6fdd02093c

+ 1 - 1
LoopFollow/Alarm/AlarmEditing/Editors/FastDropAlarmEditor.swift

@@ -20,7 +20,7 @@ struct FastDropAlarmEditor: View {
                 header: "Rate of Fall",
                 footer: "This is how much the glucose must drop to be considered a fast drop.",
                 title: "Falls by",
-                range: 3 ... 20,
+                range: 3 ... 54,
                 value: Binding(
                     get: { alarm.delta ?? 18 },
                     set: { alarm.delta = $0 }

+ 1 - 1
LoopFollow/Alarm/AlarmEditing/Editors/FastRiseAlarmEditor.swift

@@ -22,7 +22,7 @@ struct FastRiseAlarmEditor: View {
                 header: "Rate of Rise",
                 footer: "This is how much the glucose must rise to be considered a fast rise.",
                 title: "Rises by",
-                range: 3 ... 20,
+                range: 3 ... 54,
                 value: Binding(
                     get: { alarm.delta ?? 3 },
                     set: { alarm.delta = $0 }