diff --git a/client/components/menuextension/Archive.tsx b/client/components/menuextension/Archive.tsx index 2e66ac7f8..e3824397f 100644 --- a/client/components/menuextension/Archive.tsx +++ b/client/components/menuextension/Archive.tsx @@ -12,7 +12,6 @@ export default function Archive(props) { ([_, colRef]) => colRef.current?.inodes.find(inode => inode.selected) ); const selectedInodeIds = columnRef.current?.inodes.filter(inode => inode.selected).map(inode => inode.id) ?? []; - console.log("archiveSelectedIcons", selectedInodeIds); if (selectedInodeIds.length > 0) { const fetchUrl = `${settings.base_url}${folderId}/archive`; const response = await fetch(fetchUrl, { diff --git a/client/finder/Item.tsx b/client/finder/Item.tsx index e48105a8f..cfb2a1622 100644 --- a/client/finder/Item.tsx +++ b/client/finder/Item.tsx @@ -29,7 +29,7 @@ export function DraggableItem(props) { props.listRef.current.selectInode(event, props); } else { // presumably a triple click, could be used to edit folder details - console.log('selectInode', event.detail); + console.debug('selectInode', event.detail); } }, 150);