We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce3f304 commit 5347f42Copy full SHA for 5347f42
src/pages/categorias/[category]/[...page].astro
@@ -14,7 +14,7 @@ export async function getStaticPaths({ paginate }) {
14
}
15
16
const allPosts = await getCollection("blog");
17
- return allCategories.map((categoryObj) => {
+ return allCategories.flatMap((categoryObj) => {
18
let filteredPosts =
19
categoryObj.key == "todo" ? allPosts : allPosts.filter((post) => post.data.categories.includes(categoryObj.key));
20
filteredPosts.sort((a, b) => b.data.pubDate.valueOf() - a.data.pubDate.valueOf());
0 commit comments