Set up the infrastructure to play music #29

Merged
savanni merged 3 commits from feature/play-music into main 2023-03-10 14:35:18 +00:00
1 changed files with 0 additions and 1 deletions
Showing only changes of commit baa263184e - Show all commits

View File

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