Visually select first workout in plan by default

This commit is contained in:
Brandon Presley 2022-10-12 17:17:28 +13:00
parent 05a7747f05
commit 3b0391310b
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ export default function StartPlan() {
const {toast} = useContext(SnackbarContext);
const [minutes, setMinutes] = useState(set.minutes);
const [seconds, setSeconds] = useState(set.seconds);
const [selected, setSelected] = useState<number>();
const [selected, setSelected] = useState(0);
const {settings} = useSettings();
const [counts, setCounts] = useState<CountMany[]>();
const weightRef = useRef<TextInput>(null);