set max count to 20

This commit is contained in:
sanjayk03-dev
2024-01-29 04:03:27 +05:30
parent 2a1182db56
commit 0e1360297e
3 changed files with 19 additions and 72 deletions

View File

@@ -314,7 +314,7 @@ module.exports = {
},
addNewMacros: async function () {
const length = this.config.macros.length;
if (length >= 30) {
if (length >= 20) {
this.maxLimitReached = true;
return;
}