Skip to content

Commit

Permalink
filter out comparison articles from recent posts on about page
Browse files Browse the repository at this point in the history
  • Loading branch information
smallbrownbike committed Feb 12, 2025
1 parent 0190a58 commit 36b9db5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/About/AboutBlog/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const query = graphql`
allMdx(
filter: {
fields: { slug: { regex: "/^/blog/" } }
frontmatter: { date: { ne: null } }
frontmatter: { date: { ne: null }, tags: { nin: ["Comparisons"] } }
isFuture: { ne: true }
}
limit: 1
Expand Down

0 comments on commit 36b9db5

Please sign in to comment.