Skip to content

Commit f019088

Browse files
committed
Remove console logs
1 parent af14299 commit f019088

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

src/programs/FileBrowser/MainContent/MainContent.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,6 @@ function MainContent({
5050
}
5151
);
5252

53-
console.log(objects.map((o) => o.name));
54-
5553
return objects;
5654
}
5755

src/stores/localFS.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -295,10 +295,8 @@ export const useLocalFS = create<LocalFSState>()(
295295
// store the path on each FSObject and instead store a reference to
296296
// the parent FSDirectory, but this would very tricky to persist
297297
function updatePathRecursive(fsObject: FSObject) {
298-
console.log("Updating", fsObject.path);
299298
const regex = new RegExp(`^${oldPath}`);
300299
fsObject.path = fsObject.path.replace(regex, newPath);
301-
console.log("Updated to", fsObject.path);
302300

303301
if (!isFSDirectory(fsObject)) return;
304302

0 commit comments

Comments
 (0)