diff --git a/src/components/note-list/noteListUtils.ts b/src/components/note-list/noteListUtils.ts index e318b29e..fb6e5e6d 100644 --- a/src/components/note-list/noteListUtils.ts +++ b/src/components/note-list/noteListUtils.ts @@ -9,7 +9,6 @@ export function resolveHeaderTitle(selection: SidebarSelection, typeDocument: Va if (selection.kind === 'entity') return selection.entry.title if (typeDocument) return typeDocument.title if (selection.kind === 'filter' && selection.filter === 'archived') return 'Archive' - if (selection.kind === 'filter' && selection.filter === 'trash') return 'Trash' if (selection.kind === 'filter' && selection.filter === 'changes') return 'Changes' if (selection.kind === 'filter' && selection.filter === 'inbox') return 'Inbox' return 'Notes' diff --git a/src/hooks/commands/navigationCommands.ts b/src/hooks/commands/navigationCommands.ts index 10ec6f65..0d1692f7 100644 --- a/src/hooks/commands/navigationCommands.ts +++ b/src/hooks/commands/navigationCommands.ts @@ -17,7 +17,6 @@ export function buildNavigationCommands(config: NavigationCommandsConfig): Comma { id: 'search-notes', label: 'Search Notes', group: 'Navigation', shortcut: '⌘P', keywords: ['find', 'open', 'quick'], enabled: true, execute: onQuickOpen }, { id: 'go-all', label: 'Go to All Notes', group: 'Navigation', keywords: ['filter'], enabled: true, execute: () => onSelect({ kind: 'filter', filter: 'all' }) }, { id: 'go-archived', label: 'Go to Archived', group: 'Navigation', keywords: [], enabled: true, execute: () => onSelect({ kind: 'filter', filter: 'archived' }) }, - { id: 'go-trash', label: 'Go to Trash', group: 'Navigation', keywords: ['deleted'], enabled: true, execute: () => onSelect({ kind: 'filter', filter: 'trash' }) }, { id: 'go-changes', label: 'Go to Changes', group: 'Navigation', keywords: ['git', 'modified', 'pending'], enabled: true, execute: () => onSelect({ kind: 'filter', filter: 'changes' }) }, { id: 'go-pulse', label: 'Go to Pulse', group: 'Navigation', keywords: ['activity', 'history', 'commits', 'git', 'feed'], enabled: true, execute: () => onSelect({ kind: 'filter', filter: 'pulse' }) }, { id: 'go-inbox', label: 'Go to Inbox', group: 'Navigation', keywords: ['inbox', 'unlinked', 'orphan', 'unorganized', 'triage'], enabled: true, execute: () => onSelect({ kind: 'filter', filter: 'inbox' }) },