diff --git a/src/redux/studio-comment-actions.js b/src/redux/studio-comment-actions.js index e652893aa..c22896012 100644 --- a/src/redux/studio-comment-actions.js +++ b/src/redux/studio-comment-actions.js @@ -4,6 +4,7 @@ const api = require('../lib/api'); const log = require('../lib/log'); const COMMENT_LIMIT = 20; +const REPLY_LIMIT = 25; const { addNewComment, @@ -44,7 +45,7 @@ const getReplies = (commentIds, offset) => ((dispatch, getState) => { api({ uri: `${isAdmin ? '/admin' : ''}/studios/${studioId}/comments/${parentId}/replies`, authentication: token ? token : null, - params: {offset: offset || 0, limit: COMMENT_LIMIT} + params: {offset: offset || 0, limit: REPLY_LIMIT} }, (err, body, res) => { if (err) { return callback(`Error fetching comment replies: ${err}`);