Skip to content

Commit d0bf5d4

Browse files
committed
external-blog-link-3
1 parent 0f2ab3d commit d0bf5d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/templates/blog-post.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,8 +162,8 @@ function BlogPostTemplate({ data }) {
162162
<SectionHeader title="Related" color="border">
163163
<ResponsiveGrid gap="large" rows={rows} columns={columns}>
164164
{blogsByTags.map((blogPost) =>
165-
blogPost.url !== '/' &&
166-
blogPost.node.frontmatter.authorimage ||
165+
(blogPost.url !== '/' &&
166+
blogPost.node.frontmatter.authorimage) ||
167167
blogPost.node.frontmatter.author ? (
168168
<BlogCard key={blogPost.node.id} node={blogPost.node} />
169169
) : undefined,

0 commit comments

Comments
 (0)