|
|
@@ -35,7 +35,8 @@ extension Bolus {
|
|
|
).foregroundColor(.secondary)
|
|
|
}.contentShape(Rectangle())
|
|
|
.onTapGesture {
|
|
|
- state.amount = state.inslinRecommended
|
|
|
+ state.amount = max(Decimal(round(Double(state.insulinRequired) * 20) / 20.0), 0) // round to x.x5
|
|
|
+ // state.amount = max(0, self.apsManager.roundBolus(amount: state.insulinRequired)) //throws arror about optional parameter being nil
|
|
|
}
|
|
|
HStack {
|
|
|
Text("Insulin recommended")
|