diff --git a/src/routes/v3/route-utils.js b/src/routes/v3/route-utils.js index be11a4e..d49b29d 100644 --- a/src/routes/v3/route-utils.js +++ b/src/routes/v3/route-utils.js @@ -26,7 +26,7 @@ module.exports = { // or not. function validateArraySize(req, array) { const FREEMIUM_INPUT_SIZE = 20 - const PRO_INPUT_SIZE = 100 + const PRO_INPUT_SIZE = 20 if (req.locals && req.locals.proLimit) { if (array.length <= PRO_INPUT_SIZE) return true