File tree Expand file tree Collapse file tree 2 files changed +0
-4
lines changed
programs/FileBrowser/MainContent Expand file tree Collapse file tree 2 files changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -50,8 +50,6 @@ function MainContent({
50
50
}
51
51
) ;
52
52
53
- console . log ( objects . map ( ( o ) => o . name ) ) ;
54
-
55
53
return objects ;
56
54
}
57
55
Original file line number Diff line number Diff line change @@ -295,10 +295,8 @@ export const useLocalFS = create<LocalFSState>()(
295
295
// store the path on each FSObject and instead store a reference to
296
296
// the parent FSDirectory, but this would very tricky to persist
297
297
function updatePathRecursive ( fsObject : FSObject ) {
298
- console . log ( "Updating" , fsObject . path ) ;
299
298
const regex = new RegExp ( `^${ oldPath } ` ) ;
300
299
fsObject . path = fsObject . path . replace ( regex , newPath ) ;
301
- console . log ( "Updated to" , fsObject . path ) ;
302
300
303
301
if ( ! isFSDirectory ( fsObject ) ) return ;
304
302
You can’t perform that action at this time.
0 commit comments