Created
January 2, 2021 12:19
-
-
Save lil12t/a4fe09bb2394affbb5c8bea896619b32 to your computer and use it in GitHub Desktop.
Revisions
-
lil12t created this gist
Jan 2, 2021 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ const alreadySearched = useMemo( () => [...history] .slice(0, MAX_ITEMS_PER_PAGE) .filter((element) => items.some((item) => item.name.toLowerCase().includes(element.toLowerCase()), ), ), [history, items], );