style: change tool labels

This commit is contained in:
MAZE 2024-08-31 17:22:48 +03:30
parent fdd23899f1
commit 320d05d414
3 changed files with 4 additions and 4 deletions

View file

@ -15,7 +15,7 @@ export function Notepad({ open }: NotepadProps) {
<Item <Item
active={!!note.length} active={!!note.length}
icon={<MdNotes />} icon={<MdNotes />}
label="Notepad" label="Simple Notepad"
shortcut="Shift + N" shortcut="Shift + N"
onClick={open} onClick={open}
/> />

View file

@ -15,7 +15,7 @@ export function Pomodoro({ open }: PomodoroProps) {
<Item <Item
active={running} active={running}
icon={<MdOutlineAvTimer />} icon={<MdOutlineAvTimer />}
label="Pomodoro" label="Pomodoro Timer"
shortcut="Shift + P" shortcut="Shift + P"
onClick={open} onClick={open}
/> />

View file

@ -31,11 +31,11 @@ export function ShortcutsModal({ onClose, show }: ShortcutsModalProps) {
}, },
{ {
keys: ['Shift', 'N'], keys: ['Shift', 'N'],
label: 'Notepad', label: 'Simple Notepad',
}, },
{ {
keys: ['Shift', 'P'], keys: ['Shift', 'P'],
label: 'Pomodoro', label: 'Pomodoro Timer',
}, },
{ {
keys: ['Shift', 'T'], keys: ['Shift', 'T'],