From 1ae7f08dc430d6fa9088ea19d7c7fb3e89c69000 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20T=C3=B6lle?= Date: Sat, 7 Nov 2020 19:23:57 +0100 Subject: [PATCH] fix(frontend): missing key property in list --- frontend/src/components/ReportTopArtists.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/ReportTopArtists.tsx b/frontend/src/components/ReportTopArtists.tsx index cbb8553..6734399 100644 --- a/frontend/src/components/ReportTopArtists.tsx +++ b/frontend/src/components/ReportTopArtists.tsx @@ -57,7 +57,7 @@ export const ReportTopArtists: React.FC = () => { )} {reportHasItems && report.map(({ artist, count }) => ( -
+
{count} - {artist.name}
))}