From 5f199c1412caec5735068ed56c03fdb5f745bfc9 Mon Sep 17 00:00:00 2001 From: gravel Date: Thu, 18 Jan 2024 15:40:06 +0000 Subject: [PATCH] fix: remove log messages --- output/main.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/output/main.js b/output/main.js index 89b0315..793d04c 100644 --- a/output/main.js +++ b/output/main.js @@ -780,10 +780,8 @@ async function useSearchTerm(rawTerm, fillSearchBarWithTerm = false) { } return false; } - console.time("search"); const newRowMatches = communityFullRowCache.map(async (rowCache) => ({ rowCache, doesMatch: await rowMatches(rowCache) })); const newRows = (await Promise.all(newRowMatches)).filter((row) => row.doesMatch).map(({rowCache}) => rowCache.row); - console.timeEnd("search"); if (newRows.length === 0) { searchBar.classList.add(CLASSES.SEARCH.NO_RESULTS); } else {