Shows some quick stats about your teal.fm records. Kind of like Spotify Wrapped

oops update the name

Natalie B 321ccd45 19a77a49

Changed files
+5 -2
src
components
+5 -2
src/components/LookUp.vue
··· 86 86 (a) => a.name === artist, 87 87 ); 88 88 if (!alreadyPlayed) { 89 - inner_artists.push({ name: artist, plays: 1 }); 89 + inner_artists.push({ 90 + name: artist.artistName, 91 + plays: 1, 92 + }); 90 93 } else { 91 94 alreadyPlayed.plays++; 92 95 } 93 96 } 94 - } else { 97 + } else if (play.value?.artistNames) { 95 98 // old version 96 99 for (const arist of play.value?.artistNames) { 97 100 let alreadyPlayed = inner_artists.find(