fix(frontend): missing key property in list

This commit is contained in:
Julian Tölle 2020-11-07 19:23:57 +01:00
parent a139f7b25b
commit 1ae7f08dc4

View file

@ -57,7 +57,7 @@ export const ReportTopArtists: React.FC = () => {
)} )}
{reportHasItems && {reportHasItems &&
report.map(({ artist, count }) => ( report.map(({ artist, count }) => (
<div> <div key={artist.id}>
{count} - {artist.name} {count} - {artist.name}
</div> </div>
))} ))}