From 80a2e4de062a8141b2cd6e255a535ed1d312c7a9 Mon Sep 17 00:00:00 2001 From: lucaronin Date: Mon, 23 Feb 2026 23:16:15 +0100 Subject: [PATCH] fix: remove stale modifiedFiles prop from useNoteListData call site --- src/components/NoteList.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/NoteList.tsx b/src/components/NoteList.tsx index 8f3ccd5f..2b3d4414 100644 --- a/src/components/NoteList.tsx +++ b/src/components/NoteList.tsx @@ -265,7 +265,7 @@ function NoteListInner({ entries, selection, selectedNote, allContent, modifiedF const listConfig = sortPrefs['__list__'] ?? { option: 'modified' as SortOption, direction: 'desc' as SortDirection } const listSort = listConfig.option const listDirection = listConfig.direction - const { isEntityView, isTrashView, typeDocument, searched, searchedGroups, expiredTrashCount } = useNoteListData({ entries, selection, allContent, query, listSort, listDirection, modifiedFiles }) + const { isEntityView, isTrashView, typeDocument, searched, searchedGroups, expiredTrashCount } = useNoteListData({ entries, selection, allContent, query, listSort, listDirection }) const handleClickNote = useCallback((entry: VaultEntry, e: React.MouseEvent) => { routeNoteClick(entry, e, onSelectNote, onReplaceActiveTab)