Skip to content

Commit

Permalink
chore: i post ora seguono l'ordine corretto
Browse files Browse the repository at this point in the history
  • Loading branch information
Cadienvan committed Oct 19, 2024
1 parent 1f0d8ff commit 18041f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/linkedin/[slug].astro
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ if (!category) {
status: 404,
};
}
const posts = linkedinPosts.filter(post => post.category === category.slug).reverse();
const posts = linkedinPosts.filter(post => post.category === category.slug);
---

<Layout title={category.title} hasGoBack={false}>
Expand Down

0 comments on commit 18041f2

Please sign in to comment.