Remove a debug print

This commit is contained in:
Savanni D'Gerinel 2023-03-10 09:26:16 -05:00
parent fb3218ff58
commit baa263184e
1 changed files with 0 additions and 1 deletions

View File

@ -38,7 +38,6 @@ const updateTrackList = (tracks: TrackInfo[]) => {
listItem.appendChild(card);
listItem.trackId = info.id;
listItem.onPlay = (id: string) => {
console.log("time to play ", id);
playTrack(id);
};
playlist.appendChild(listItem);