Skip to content

Commit 0c9468c

Browse files
committed
fix(hits): Fix warning about unique key in iterator
I forgot to move the `key` key to the parent element
1 parent b7f7313 commit 0c9468c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

components/Hits.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,9 @@ class Hits extends React.Component {
77
renderWithResults() {
88
var renderedHits = map(this.props.results.hits, hit => {
99
return (
10-
<div className={this.props.cssClasses.item}>
10+
<div className={this.props.cssClasses.item} key={hit.objectID}>
1111
<Template
1212
data={hit}
13-
key={hit.objectID}
1413
templateKey="item"
1514
{...this.props.templateProps}
1615
/>

0 commit comments

Comments
 (0)