moved key to outter tag for jobs item list

This commit is contained in:
jfrye122
2023-06-09 10:12:45 -04:00
parent 3657508141
commit 7512377cbc
2 changed files with 2 additions and 2 deletions

View File

@@ -278,7 +278,7 @@ const MyItem = ({ itemState, style }) => {
<Card.Title title={itemState.title} />
<Card.Content>
{!!items ? (
items.map((item) => <ClockedinListItem ticket={item} />)
items.map((item) => <ClockedinListItem key={item.id} ticket={item} />)
) : !!itemState.content ? (
itemState.content
) : (