File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -123,7 +123,6 @@ const Disk = {
123
123
return ipcRenderer . invoke ( 'remove-file' , filePath )
124
124
} ,
125
125
saveFileContent : async ( filePath , content ) => {
126
- console . log ( 'saveFileContent' , filePath , content )
127
126
return ipcRenderer . invoke ( 'save-file' , filePath , content )
128
127
} ,
129
128
renameFile : async ( oldName , newName ) => {
Original file line number Diff line number Diff line change @@ -1090,7 +1090,7 @@ async function store(state, emitter) {
1090
1090
selectedFile . fileName
1091
1091
)
1092
1092
)
1093
- const bytesToSource = String . fromCharCode . apply ( null , fileContent ) ;
1093
+ const bytesToSource = String . fromCharCode ( ... fileContent ) ;
1094
1094
file = createFile ( {
1095
1095
parentFolder : state . boardNavigationPath ,
1096
1096
fileName : selectedFile . fileName ,
You can’t perform that action at this time.
0 commit comments