Skip to content

Commit

Permalink
small fixup related to adding key
Browse files Browse the repository at this point in the history
  • Loading branch information
naveen521kk committed Aug 14, 2023
1 parent 0d61a66 commit eb21446
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/templates/blog-post.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ const BlogPostTemplate = ({data, location, children}) => {
{/* tags section */}
<div className={styles.tagSection}>
{tags.map(tag => (
<Link to={`/tags/${tag}`}>
<Link to={`/tags/${tag}`} key={tag}>
<span key={tag} className={styles.tag}>
{tag}
</span>
Expand Down

0 comments on commit eb21446

Please sign in to comment.