Fix non-unique key warnings on user table (#2223)

This commit is contained in:
gillespi314 2021-09-27 10:28:03 -05:00 committed by GitHub
parent 97750d1e07
commit 433c76af04
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -493,7 +493,7 @@ export class HostDetailsPage extends Component {
{users.map((hostUser) => {
return (
<HostUsersListRow
key={`host-users-row-${hostUser.id}`}
key={`host-users-row-${hostUser.username}`}
hostUser={hostUser}
/>
);