chore: lint

This commit is contained in:
coderaiser 2023-08-07 17:40:25 +03:00
parent 13279299c4
commit 24dcf78be8
16 changed files with 25 additions and 26 deletions

View file

@ -131,9 +131,8 @@ async function createDefaultMenu({path, data, DOM, CloudCmd}) {
async function readDefaultMenu({prefix}) {
const res = await fetch(`${prefix}/api/v1/user-menu/default`);
const data = await res.text();
return data;
return await res.text();
}
module.exports._selectNames = selectNames;