add missing react key

Signed-off-by: goenning <me@goenning.net>
This commit is contained in:
goenning
2022-01-06 14:16:51 +00:00
parent cfca607777
commit 48580d0fbb
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-tech-insights': patch
---
fix React warning because of missing `key` prop
@@ -41,7 +41,7 @@ export const BooleanCheck = ({ checkResult }: Prop) => {
return (
<List>
{checkResult.map((check, index) => (
<ListItem>
<ListItem key={check.check.id}>
<ListItemText
key={index}
primary={check.check.name}