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
active={!!note.length}
icon={<MdNotes />}
label="Notepad"
label="Simple Notepad"
shortcut="Shift + N"
onClick={open}
/>

View file

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

View file

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