diff --git a/src/pages/[locale]/news/index.astro b/src/pages/[locale]/news/index.astro index 5397587..0d0bcb5 100644 --- a/src/pages/[locale]/news/index.astro +++ b/src/pages/[locale]/news/index.astro @@ -40,7 +40,6 @@ const newsItems = await getCollection("news", (post)=>{ return (a.data.order ?? 0) - (b.data.order ?? 0) }) - .slice(0,6) .map((item) => ( )) diff --git a/src/pages/news/index.astro b/src/pages/news/index.astro index 1750fc7..f2a1e5b 100644 --- a/src/pages/news/index.astro +++ b/src/pages/news/index.astro @@ -40,7 +40,6 @@ const newsItems = await getCollection("news", (post)=>{ return (a.data.order ?? 0) - (b.data.order ?? 0) }) - .slice(0,6) .map((item) => ( ))