We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b882457 commit 07a9659Copy full SHA for 07a9659
components/ArticleBlock.tsx
@@ -29,7 +29,7 @@ export default function ArticleBlock({
29
{tags.length != 0 ? (
30
<div className="tags">
31
{tags?.map((tag) => (
32
- <Tag>{tag}</Tag>
+ <Tag key={tag}>{tag}</Tag>
33
))}
34
</div>
35
) : null}
0 commit comments