fix: change default times

This commit is contained in:
MAZE 2024-02-29 15:05:54 +03:30
parent def69de6e4
commit 158cffca8c

View file

@ -31,9 +31,9 @@ export function Pomodoro({ onClose, show }: PomodoroProps) {
const defaultTimes = useMemo(
() => ({
long: 60,
pomodoro: 60,
short: 60,
long: 15 * 60,
pomodoro: 25 * 60,
short: 5 * 60,
}),
[],
);