add missing clearSelection Call to fileDelete function

This commit is contained in:
Abhinav-grd 2021-04-23 15:29:56 +05:30
parent aae606f001
commit a380cebb45

View file

@ -45,6 +45,7 @@ export function sortFilesIntoCollections(files: file[]) {
export async function fileDelete(selected, clearSelection, syncWithRemote) {
await deleteFiles(selected);
clearSelection();
syncWithRemote();
clearSelection;
}