chore(edit-names) rm unused arguments

This commit is contained in:
coderaiser 2020-07-08 20:01:35 +03:00
parent a117867307
commit e7feb83f76

View file

@ -30,8 +30,7 @@ const ConfigView = {
module.exports.init = async () => {
await CloudCmd.Edit();
const editor = CloudCmd.Edit.getEditor();
setListeners(editor);
setListeners();
};
module.exports.show = (options) => {
@ -216,6 +215,6 @@ async function isChanged() {
return;
const [, names] = await Dialog.confirm(msg);
names && applyNames(names);
names && applyNames();
}