From ff03af5a56e0a03307552db37ea8e7084dd1c0d5 Mon Sep 17 00:00:00 2001 From: lyswhut Date: Sun, 3 Oct 2021 11:41:43 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A7=BB=E9=99=A4=E6=97=A5=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/screens/Home/List/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)