@ -83,6 +83,7 @@ class FileManager extends Plugin {
* @param {string} message message to display if path doesn't exist.
*/
async _handleExists(path: string, message?: string) {
console.log('_handleExists is called ', { path, message })
const exists = await this.exists(path)
if (!exists) {
@ -84,10 +84,6 @@ export const FlatTreeDrop = (props: FlatTreeDropProps) => {
await moveFilesSilently(props.selectedItems, dragDestination.path)
}
document.querySelectorAll('li.remixui_selected').forEach(item => {
item.classList.remove('remixui_selected')
item.classList.remove('bg-secondary')
})
/**