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 {