fix: remove redundant enable variable

This commit is contained in:
2026-06-02 12:24:11 +05:30
parent ba1e0963f8
commit c904c94378

View File

@@ -39,7 +39,7 @@ const pm2edit = new Command("pm2edit")
}
})
const fileContent = `const enabled = false;\n\nmodule.exports = {apps: ${JSON.stringify(data, null, 2)}}`
const fileContent = `module.exports = {apps: ${JSON.stringify(data, null, 2)}}`
const formattedContent = await prettier.format(fileContent, { parser: "typescript" });