chore: lint

This commit is contained in:
coderiaser 2025-07-02 20:10:47 +03:00
parent 1679b788c2
commit 5f0391fc44
7 changed files with 30 additions and 32 deletions

View file

@ -29,8 +29,9 @@ const getOperations = (event, deps) => {
setCurrentFile,
setCurrentByName,
getCurrentName,
toggleSelectedFile,
Buffer = {},
Buffer = {},
} = deps;
return {

View file

@ -59,19 +59,19 @@ module.exports.init = promisify((callback) => {
exec.series([
DOM.loadSocket,
async (callback) => {
if (config('dropbox'))
return callback();
const {prefix, prefixSocket} = CloudCmd;
await loadAll();
await initOperations(prefix, prefixSocket, callback);
},
if (config('dropbox'))
return callback();
const {prefix, prefixSocket} = CloudCmd;
await loadAll();
await initOperations(prefix, prefixSocket, callback);
},
(callback) => {
Loaded = true;
Images.hide();
callback();
},
Loaded = true;
Images.hide();
callback();
},
], callback);
});