Skip to content

Instantly share code, notes, and snippets.

@lil12t
Created January 2, 2021 12:19
Show Gist options
  • Save lil12t/a4fe09bb2394affbb5c8bea896619b32 to your computer and use it in GitHub Desktop.
Save lil12t/a4fe09bb2394affbb5c8bea896619b32 to your computer and use it in GitHub Desktop.

Revisions

  1. lil12t created this gist Jan 2, 2021.
    11 changes: 11 additions & 0 deletions alreadySearched.tsx
    Original 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],
    );