Skip to content

Commit 5eb4ea6

Browse files
filter out comparison articles from recent posts on about page (#10640)
1 parent faad337 commit 5eb4ea6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/About/AboutBlog/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ const query = graphql`
6262
allMdx(
6363
filter: {
6464
fields: { slug: { regex: "/^/blog/" } }
65-
frontmatter: { date: { ne: null } }
65+
frontmatter: { date: { ne: null }, tags: { nin: ["Comparisons"] } }
6666
isFuture: { ne: true }
6767
}
6868
limit: 1

0 commit comments

Comments
 (0)