Skip to content

Commit

Permalink
remove debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
jrief committed Oct 2, 2024
1 parent 48cbb2b commit 1786dcb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion client/components/menuextension/Archive.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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, {
Expand Down
2 changes: 1 addition & 1 deletion client/finder/Item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 1786dcb

Please sign in to comment.