diff --git a/client/src/pages/home.tsx b/client/src/pages/home.tsx index 9a3a6af..1b7dd12 100644 --- a/client/src/pages/home.tsx +++ b/client/src/pages/home.tsx @@ -523,14 +523,6 @@ export default function Home() { - {widePickedArticles.length > 0 && ( -
- {widePickedArticles.map((a) => ( - - ))} -
- )} - {gridRows.map((row, ri) => (
{row.map((item, ci) => @@ -540,6 +532,11 @@ export default function Home() { ? : null )} + {ri === gridRows.length - 1 && widePickedArticles.length > 0 && ( +
+ +
+ )}
))}