mirror of
https://github.com/remvze/moodist.git
synced 2025-12-17 08:54:13 +00:00
fix: remove time from tabs array
This commit is contained in:
parent
158cffca8c
commit
110356b2da
1 changed files with 3 additions and 3 deletions
|
|
@ -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' },
|
||||
],
|
||||
[],
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue