@@ -253,7 +253,7 @@ function* githubSaveAll(): any {
253
253
}
254
254
255
255
function * githubCreateFile ( { payload } : ReturnType < typeof actions . githubCreateFile > ) : any {
256
- yield call ( store . dispatch , actions . disableFileSystemContextMenus ( ) ) ;
256
+ // yield call(store.dispatch, actions.disableFileSystemContextMenus());
257
257
258
258
const filePath = payload ;
259
259
@@ -298,7 +298,7 @@ function* githubCreateFile({ payload }: ReturnType<typeof actions.githubCreateFi
298
298
}
299
299
300
300
function * githubDeleteFile ( { payload } : ReturnType < typeof actions . githubDeleteFile > ) : any {
301
- yield call ( store . dispatch , actions . disableFileSystemContextMenus ( ) ) ;
301
+ // yield call(store.dispatch, actions.disableFileSystemContextMenus());
302
302
303
303
const filePath = payload ;
304
304
@@ -337,7 +337,7 @@ function* githubDeleteFile({ payload }: ReturnType<typeof actions.githubDeleteFi
337
337
}
338
338
339
339
function * githubDeleteFolder ( { payload } : ReturnType < typeof actions . githubDeleteFolder > ) : any {
340
- yield call ( store . dispatch , actions . disableFileSystemContextMenus ( ) ) ;
340
+ // yield call(store.dispatch, actions.disableFileSystemContextMenus());
341
341
342
342
const filePath = payload ;
343
343
@@ -375,7 +375,7 @@ function* githubDeleteFolder({ payload }: ReturnType<typeof actions.githubDelete
375
375
}
376
376
377
377
function * githubRenameFile ( { payload } : ReturnType < typeof actions . githubRenameFile > ) : any {
378
- yield call ( store . dispatch , actions . disableFileSystemContextMenus ( ) ) ;
378
+ // yield call(store.dispatch, actions.disableFileSystemContextMenus());
379
379
380
380
const newFilePath = payload . newFilePath ;
381
381
const oldFilePath = payload . oldFilePath ;
@@ -416,7 +416,7 @@ function* githubRenameFile({ payload }: ReturnType<typeof actions.githubRenameFi
416
416
}
417
417
418
418
function * githubRenameFolder ( { payload } : ReturnType < typeof actions . githubRenameFile > ) : any {
419
- yield call ( store . dispatch , actions . disableFileSystemContextMenus ( ) ) ;
419
+ // yield call(store.dispatch, actions.disableFileSystemContextMenus());
420
420
421
421
const newFilePath = payload . newFilePath ;
422
422
const oldFilePath = payload . oldFilePath ;
0 commit comments