From 110356b2da82e0f1e971ee9dc486664027d886ff Mon Sep 17 00:00:00 2001 From: MAZE Date: Thu, 29 Feb 2024 15:06:37 +0330 Subject: [PATCH] fix: remove time from tabs array --- 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 9cb7d5d..6fdeed9 100644 --- a/src/components/toolbox/pomodoro/pomodoro.tsx +++ b/src/components/toolbox/pomodoro/pomodoro.tsx @@ -51,9 +51,9 @@ export function Pomodoro({ onClose, show }: PomodoroProps) { const tabs = useMemo( () => [ - { id: 'pomodoro', label: 'Pomodoro', time: 60 }, - { id: 'short', label: 'Break', time: 60 }, - { id: 'long', label: 'Long Break', time: 60 }, + { id: 'pomodoro', label: 'Pomodoro' }, + { id: 'short', label: 'Break' }, + { id: 'long', label: 'Long Break' }, ], [], );