Skip to content

Commit

Permalink
rm log
Browse files Browse the repository at this point in the history
  • Loading branch information
v-rocheleau committed Jun 20, 2024
1 parent 2a1185f commit 5785ff8
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/components/manager/DropBoxTreeSelect.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ const generateFileTree = (directory, valid, folderMode, basePrefix) =>
.filter(entry => !folderMode || entry.contents !== undefined) // Don't show files in folder mode
.map(entry => {
const { name, contents, relativePath } = entry;
console.log(entry);
const isValid = valid(entry);
const isFolder = contents !== undefined;

Expand Down

0 comments on commit 5785ff8

Please sign in to comment.