diff --git a/src/screens/Home/List/utils.js b/src/screens/Home/List/utils.js index fa023f7..b3b4f55 100644 --- a/src/screens/Home/List/utils.js +++ b/src/screens/Home/List/utils.js @@ -69,6 +69,6 @@ export const debounceSearchList = debounce((text, list, callback) => { for (const item of list) { if (rxp.test(`${item.name}${item.singer}${item.albumName ? item.albumName : ''}`)) reslutList.push(item) } - console.log(reslutList) + // console.log(reslutList) callback(handleSortList(reslutList, text)) }, 200)