Fix missing key prop

This commit is contained in:
danswer-trial 2024-09-13 16:49:16 -07:00
parent 6210b6a558
commit c6f7733ac4

View File

@ -122,7 +122,10 @@ const StandardAnswersTableRow = ({
? `\`${standardAnswer.keyword}\``
: standardAnswer.keyword}
</ReactMarkdown>,
<CustomCheckbox checked={standardAnswer.match_regex} />,
<CustomCheckbox
key={`match_regex-${standardAnswer.id}`}
checked={standardAnswer.match_regex}
/>,
<ReactMarkdown
key={`answer-${standardAnswer.id}`}
className="prose"