chore: upgrade deps and remove unused file

This commit is contained in:
Mo
2022-03-12 16:43:07 -06:00
parent 5b42eedd97
commit 0b17b32b0c
7 changed files with 89 additions and 499 deletions

View File

@@ -48,7 +48,7 @@ export const AttachedFilesPopover: FunctionComponent<Props> = observer(
const filteredList =
searchQuery.length > 0
? filesList.filter(
(file) => file.nameWithExt.toLowerCase().indexOf(searchQuery) !== -1
(file) => file.name.toLowerCase().indexOf(searchQuery) !== -1
)
: filesList;