Skip to content

Commit

Permalink
increased animation time when loading saved timers to input from 400 …
Browse files Browse the repository at this point in the history
…to 300
  • Loading branch information
MacielG1 committed Sep 8, 2023
1 parent f2d9b41 commit 0810b32
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/components/MenuButtons.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export default function MenuButtons() {
const setWorkTime = useStore((state) => state.setWorkTime);
const setRestTime = useStore((state) => state.setRestTime);
const setPrepTime = useStore((state) => state.setPrepTime);

const setRoundsSelected = useStore((state) => state.setRoundsSelected);
const setTimer = useStore((state) => state.setTimer);
const timeIncrease = useStore((state) => state.timeIncrease);
Expand Down
2 changes: 1 addition & 1 deletion src/components/Sidebar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export default function Sidebar() {
SetIsLoadingSavedTimer(true);
setTimeout(() => {
SetIsLoadingSavedTimer(false);
}, 400);
}, 300);
}

return (
Expand Down

0 comments on commit 0810b32

Please sign in to comment.