Skip to content

Commit dbb66cc

Browse files
committed
rest between cycles to rest between sets
1 parent 44865ae commit dbb66cc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/configureRoutine/RoutineConfigurationForm.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const defaultConfig = {
2525
Sets: { value: 4, name: "Sets" },
2626
RestBetweenSteps: {
2727
duration: 120000,
28-
name: "Rest Between Cycles",
28+
name: "Rest Between Sets",
2929
},
3030
CoolDown: { duration: 300000, name: "Cool Down" },
3131
},

src/pages/PlayScreen/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ function StepView() {
4747
);
4848
}, [workoutState]);
4949

50-
const whiteListedNames = ["Rest Between Cycles", "Cool Down", "Preparation"];
50+
const whiteListedNames = ["Rest Between Sets", "Cool Down", "Preparation"];
5151

5252
return (
5353
<div className="overflow-y-auto">

0 commit comments

Comments
 (0)