Skip to content

Commit 6cd8284

Browse files
committed
1 parent 75f6796 commit 6cd8284

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/search/SearchHighlightsDialog.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,9 @@ const SearchHighlightsDialog = ({onClose, concept, rawScores, candidatesScore, o
8989
{
9090
rawScores?.length ? (
9191
<Stack spacing={0.75} alignItems='flex-end'>
92-
{map(rawScores, rawScore => (
92+
{map(rawScores, (rawScore, index) => (
9393
<Stack
94-
key={`${rawScore.algorithm}-${rawScore.score}`}
94+
key={`${rawScore.algorithm}-${rawScore.score}-${index}`}
9595
direction='row'
9696
spacing={0.75}
9797
alignItems='center'

0 commit comments

Comments
 (0)