From 158cffca8c4b138f33e2df03e046706d2b122478 Mon Sep 17 00:00:00 2001 From: MAZE Date: Thu, 29 Feb 2024 15:05:54 +0330 Subject: [PATCH] fix: change default times --- src/components/toolbox/pomodoro/pomodoro.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/toolbox/pomodoro/pomodoro.tsx b/src/components/toolbox/pomodoro/pomodoro.tsx index 1024fbe..9cb7d5d 100644 --- a/src/components/toolbox/pomodoro/pomodoro.tsx +++ b/src/components/toolbox/pomodoro/pomodoro.tsx @@ -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, }), [], );