Remove stray console.log

This commit is contained in:
Deluan 2020-11-26 11:25:16 -05:00 committed by Deluan Quintão
parent b6c578e3a2
commit 9064697123
1 changed files with 0 additions and 1 deletions

View File

@ -50,7 +50,6 @@ const PlaylistActions = ({ className, ids, data, record, ...rest }) => {
httpClient(`${REST_URL}/playlist/${record.id}/tracks`, {
headers: new Headers({ Accept: M3U_MIME_TYPE }),
}).then((res) => {
console.log(res)
const blob = new Blob([res.body], { type: M3U_MIME_TYPE })
const url = window.URL.createObjectURL(blob)
const link = document.createElement('a')