File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -529,7 +529,7 @@ function TweetsSection() {
529
529
< div className = { clsx ( 'row' , styles . tweetsSection ) } >
530
530
{ /* Render tweets in groups of three */ }
531
531
< div className = "col col--4" >
532
- { userTweets . slice ( 0 , 3 ) . map ( ( tweet , index ) => (
532
+ { userTweets . slice ( 0 , 4 ) . map ( ( tweet , index ) => (
533
533
< Tweet
534
534
key = { index }
535
535
url = { tweet . url }
@@ -542,7 +542,7 @@ function TweetsSection() {
542
542
) ) }
543
543
</ div >
544
544
< div className = "col col--4" >
545
- { userTweets . slice ( 3 , 6 ) . map ( ( tweet , index ) => (
545
+ { userTweets . slice ( 4 , 7 ) . map ( ( tweet , index ) => (
546
546
< Tweet
547
547
key = { index }
548
548
url = { tweet . url }
@@ -555,7 +555,7 @@ function TweetsSection() {
555
555
) ) }
556
556
</ div >
557
557
< div className = "col col--4" >
558
- { userTweets . slice ( 6 , 9 ) . map ( ( tweet , index ) => (
558
+ { userTweets . slice ( 7 , 10 ) . map ( ( tweet , index ) => (
559
559
< Tweet
560
560
key = { index }
561
561
url = { tweet . url }
You can’t perform that action at this time.
0 commit comments