Skip to content

Commit 9cc60d0

Browse files
committed
fix(User): add missing unique key prop
1 parent 0ab11ea commit 9cc60d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/views/Users/User.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class User extends Component {
2525
{
2626
userDetails.map(([key, value]) => {
2727
return (
28-
<tr>
28+
<tr key={key}>
2929
<td>{`${key}:`}</td>
3030
<td><strong>{value}</strong></td>
3131
</tr>

0 commit comments

Comments
 (0)