Skip to content

Commit

Permalink
rest between cycles to rest between sets
Browse files Browse the repository at this point in the history
  • Loading branch information
andorsk committed May 5, 2024
1 parent 44865ae commit dbb66cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const defaultConfig = {
Sets: { value: 4, name: "Sets" },
RestBetweenSteps: {
duration: 120000,
name: "Rest Between Cycles",
name: "Rest Between Sets",
},
CoolDown: { duration: 300000, name: "Cool Down" },
},
Expand Down
2 changes: 1 addition & 1 deletion src/pages/PlayScreen/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ function StepView() {
);
}, [workoutState]);

const whiteListedNames = ["Rest Between Cycles", "Cool Down", "Preparation"];
const whiteListedNames = ["Rest Between Sets", "Cool Down", "Preparation"];

return (
<div className="overflow-y-auto">
Expand Down

0 comments on commit dbb66cc

Please sign in to comment.