From dbb66cc31184e8ce8bd23c8832f291aab8693a91 Mon Sep 17 00:00:00 2001 From: Andor Kesselman Date: Sun, 5 May 2024 17:28:27 +0530 Subject: [PATCH] rest between cycles to rest between sets --- src/components/configureRoutine/RoutineConfigurationForm.tsx | 2 +- src/pages/PlayScreen/index.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/configureRoutine/RoutineConfigurationForm.tsx b/src/components/configureRoutine/RoutineConfigurationForm.tsx index d596363..3b108b2 100644 --- a/src/components/configureRoutine/RoutineConfigurationForm.tsx +++ b/src/components/configureRoutine/RoutineConfigurationForm.tsx @@ -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" }, }, diff --git a/src/pages/PlayScreen/index.tsx b/src/pages/PlayScreen/index.tsx index 6485ab0..3da2dd5 100644 --- a/src/pages/PlayScreen/index.tsx +++ b/src/pages/PlayScreen/index.tsx @@ -47,7 +47,7 @@ function StepView() { ); }, [workoutState]); - const whiteListedNames = ["Rest Between Cycles", "Cool Down", "Preparation"]; + const whiteListedNames = ["Rest Between Sets", "Cool Down", "Preparation"]; return (