Skip to content

Commit

Permalink
fix: display error on finished workout
Browse files Browse the repository at this point in the history
  • Loading branch information
blockbasti committed Jan 24, 2021
1 parent 315b35b commit fc983d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/WorkoutRunner.dart
Expand Up @@ -162,7 +162,7 @@ class _WorkoutPageState extends State<WorkoutPage> {
TTSHelper.speak('Workout complete');
setState(() {
_workoutDone = true;
_currentExercise = Exercise(name: 'Workout complete!', duration: 0);
_currentExercise = Exercise(name: 'Workout complete!', duration: 1);
});
};

Expand Down

0 comments on commit fc983d4

Please sign in to comment.