This commit is contained in:
Trey t
2023-07-05 22:08:47 -05:00
parent 4bcfd6a7fa
commit e43e5b11bf
8 changed files with 207 additions and 28 deletions

View File

@@ -330,23 +330,6 @@ struct ExerciseListView: View {
videoExercise = obj.exercise
}
}
if i == bridgeModule.currentExerciseIdx {
HStack {
if obj.exercise.isReps {
Text("is reps")
.frame(maxWidth: .infinity, maxHeight: .infinity)
}
if obj.exercise.isWeight {
Text("is weight")
.frame(maxWidth: .infinity, maxHeight: .infinity)
}
if obj.exercise.isDuration {
Text("is duration")
.frame(maxWidth: .infinity, maxHeight: .infinity)
}
}
}
}
}
.onChange(of: bridgeModule.currentExerciseIdx, perform: { newValue in