fix: remove all notes status pills

This commit is contained in:
lucaronin
2026-04-14 20:07:54 +02:00
parent 1388e7ddbe
commit 9ccd0a7221
2 changed files with 8 additions and 15 deletions

View File

@@ -32,7 +32,7 @@ function useViewFlags(selection: SidebarSelection) {
const isInboxView = selection.kind === 'filter' && selection.filter === 'inbox'
const isAllNotesView = selection.kind === 'filter' && selection.filter === 'all'
const isChangesView = selection.kind === 'filter' && selection.filter === 'changes'
const showFilterPills = isSectionGroup || isFolderView || isAllNotesView
const showFilterPills = isSectionGroup || isFolderView
return { isSectionGroup, isFolderView, isInboxView, isAllNotesView, isChangesView, showFilterPills }
}