Fix build error

This commit is contained in:
Justin Edmund 2023-02-27 21:14:26 -08:00
parent 1f083073e4
commit 16cc7ffb30

View file

@ -36,7 +36,7 @@ const ContentUpdate = ({
const items = newItems[key]
elements = items
? items.map((id) => {
return <ChangelogUnit id={id} type={key} />
return <ChangelogUnit id={id} type={key} key={`${key}-${i}`} />
})
: []
}