mirror of
https://github.com/apricote/Listory.git
synced 2026-01-13 21:21:02 +00:00
fix(frontend): missing key property in list
This commit is contained in:
parent
a139f7b25b
commit
1ae7f08dc4
1 changed files with 1 additions and 1 deletions
|
|
@ -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>
|
||||||
))}
|
))}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue