Skip to content

Commit

Permalink
Remove suspend effect from glucose prediction details page (#673)
Browse files Browse the repository at this point in the history
  • Loading branch information
ps2 authored Jun 25, 2024
1 parent 5bf071f commit ba3942e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Loop/View Controllers/PredictionTableViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,9 @@ class PredictionTableViewController: LoopChartsTableViewController, Identifiable

private var eventualGlucoseDescription: String?

private var availableInputs: [PredictionInputEffect] = [.carbs, .insulin, .momentum, .retrospection, .suspend]
// Removed .suspend from this list; LoopAlgorithm needs updates to support this. Also review
// for better ways to support desired use cases. https://github.com/LoopKit/Loop/pull/2026
private var availableInputs: [PredictionInputEffect] = [.carbs, .insulin, .momentum, .retrospection]

private var selectedInputs = PredictionInputEffect.all

Expand Down

0 comments on commit ba3942e

Please sign in to comment.