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