Skip to content

Commit

Permalink
fix: change initial value
Browse files Browse the repository at this point in the history
  • Loading branch information
remvze committed Feb 25, 2024
1 parent f3cb2a1 commit a7e5368
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/toolbox/pomodoro/pomodoro.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export function Pomodoro({ onClose, show }: PomodoroProps) {

const [selectedTab, setSelectedTab] = useState('pomodoro');
const [running, setRunning] = useState(false);
const [timer, setTimer] = useState(0);
const [timer, setTimer] = useState(10);
const interval = useRef<ReturnType<typeof setInterval> | null>(null);

const [times, setTimes] = useState<Record<string, number>>({
Expand Down

0 comments on commit a7e5368

Please sign in to comment.