Skip to content

Commit

Permalink
fix: remove time from tabs array
Browse files Browse the repository at this point in the history
  • Loading branch information
remvze committed Feb 29, 2024
1 parent 158cffc commit 110356b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/toolbox/pomodoro/pomodoro.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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' },
],
[],
);
Expand Down

0 comments on commit 110356b

Please sign in to comment.