We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c13ae01 commit 9d59f7dCopy full SHA for 9d59f7d
1 file changed
components/guides/ArticleCard.tsx
@@ -19,9 +19,8 @@ export const ArticleCard = ({ card, typeLabel }: Props) => {
19
<ul style={{ listStyleType: 'none' }}>
20
{card.topics.map((topic) => {
21
return (
22
- <li className="d-inline-block">
+ <li className="d-inline-block" key={topic}>
23
<Label
24
- key={topic}
25
data-testid="article-card-topic"
26
variant="small"
27
sx={{ bg: 'accent.emphasis', mr: 1 }}
0 commit comments