Просмотр исходного кода

test fix for persistent recommended bolus animation when initially open BolusInputView after rebuild or restart of the watch app

polscm32 aka Marvout 1 год назад
Родитель
Сommit
57c031b6b3
1 измененных файлов с 0 добавлено и 1 удалено
  1. 0 1
      Trio Watch App Extension/Views/BolusInputView.swift

+ 0 - 1
Trio Watch App Extension/Views/BolusInputView.swift

@@ -167,7 +167,6 @@ struct BolusInputView: View {
         // Add onChange to update bolus amount when recommendation changes
         .onChange(of: state.recommendedBolus) { _, newValue in
             if bolusAmount == 0 { // Only update if user hasn't modified the value
-                state.showBolusCalculationProgress = true
                 bolusAmount = Double(truncating: NSDecimalNumber(decimal: newValue))
             }
         }