From e7357dad1c31672a87594eff779f3a28f2c5222d Mon Sep 17 00:00:00 2001 From: thegamerguy-official Date: Tue, 16 Dec 2025 21:16:30 +0100 Subject: [PATCH] Fix #431 --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 77019b6..3ece2de 100644 --- a/index.js +++ b/index.js @@ -16,7 +16,7 @@ const getPosts = async (user) => { const getCommentsForEachPost = async (posts) => { const res = await Promise.all(posts.map(post => - fetch(`${url}/comments?postId=${post.id}&_limit=4`) + fetch(`${url}/comments?postId=${post.id}&_limit=3`) )); console.log(res); const postComments = await Promise.all(res.map(r => r.json()));