diff --git a/CHANGELOG.md b/CHANGELOG.md index 190e14d..0ae7156 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ **July 2026** +On Apple Watch, the workout screen now gives its whole display to the set and rest timer, without the form-guide figure shown on iPhone. + Barbells and pull-up bars in the animated form guide now turn with the figure as the view circles, instead of hovering fixed on screen. The goblet squat form guide now holds the weight at the chest with elbows tucked down, instead of flaring oddly. diff --git a/Workouts Watch App/Views/ExerciseProgressView.swift b/Workouts Watch App/Views/ExerciseProgressView.swift index ac0399e..2250756 100644 --- a/Workouts Watch App/Views/ExerciseProgressView.swift +++ b/Workouts Watch App/Views/ExerciseProgressView.swift @@ -189,38 +189,29 @@ struct ExerciseProgressView: View { var body: some View { if startsCompleted { - // Same top/bottom split as the run flow, so the form-guide figure - // stays on screen (matching the iPhone counterpart). - VStack(spacing: 0) { - CompletedPhaseView() - ExerciseFigureSlot(exerciseName: log?.exerciseName ?? "") - } + CompletedPhaseView() } else { flowBody } } private var flowBody: some View { - VStack(spacing: 0) { - // Paged flow — top half. - TabView(selection: $currentPage) { - ForEach(0..