fix: change shortcuts

This commit is contained in:
MAZE 2024-06-16 19:27:33 +04:30
parent 09c0a6ce93
commit edd15f4b9a
2 changed files with 2 additions and 2 deletions

View file

@ -11,7 +11,7 @@ export function CountdownTimer({ open }: SleepTimerProps) {
<Item <Item
icon={<MdOutlineTimer />} icon={<MdOutlineTimer />}
label="Countdown Timer" label="Countdown Timer"
shortcut="Shift + T" shortcut="Shift + C"
onClick={open} onClick={open}
/> />
); );

View file

@ -15,7 +15,7 @@ export function SleepTimer({ open }: SleepTimerProps) {
active={active} active={active}
icon={<IoMoonSharp />} icon={<IoMoonSharp />}
label="Sleep Timer" label="Sleep Timer"
shortcut="Shift + Alt + T" shortcut="Shift + T"
onClick={open} onClick={open}
/> />
); );