We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af14299 commit f019088Copy full SHA for f019088
2 files changed
src/programs/FileBrowser/MainContent/MainContent.tsx
@@ -50,8 +50,6 @@ function MainContent({
50
}
51
);
52
53
- console.log(objects.map((o) => o.name));
54
-
55
return objects;
56
57
src/stores/localFS.ts
@@ -295,10 +295,8 @@ export const useLocalFS = create<LocalFSState>()(
295
// store the path on each FSObject and instead store a reference to
296
// the parent FSDirectory, but this would very tricky to persist
297
function updatePathRecursive(fsObject: FSObject) {
298
- console.log("Updating", fsObject.path);
299
const regex = new RegExp(`^${oldPath}`);
300
fsObject.path = fsObject.path.replace(regex, newPath);
301
- console.log("Updated to", fsObject.path);
302
303
if (!isFSDirectory(fsObject)) return;
304
0 commit comments