From d9fe94db3bf69885f024541bb65db840788ac417 Mon Sep 17 00:00:00 2001 From: Yehia Rasheed <157399068+yehiarasheed@users.noreply.github.com> Date: Thu, 17 Oct 2024 23:17:20 +0300 Subject: [PATCH] feat: reorder Tweets by slicing map --- apps/website/src/pages/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/website/src/pages/index.js b/apps/website/src/pages/index.js index f3de0092..d2b434ed 100755 --- a/apps/website/src/pages/index.js +++ b/apps/website/src/pages/index.js @@ -529,7 +529,7 @@ function TweetsSection() {
{/* Render tweets in groups of three */}
- {userTweets.slice(0, 3).map((tweet, index) => ( + {userTweets.slice(0, 4).map((tweet, index) => (
- {userTweets.slice(3, 6).map((tweet, index) => ( + {userTweets.slice(4, 7).map((tweet, index) => (
- {userTweets.slice(6, 9).map((tweet, index) => ( + {userTweets.slice(7, 10).map((tweet, index) => (