Skip to content

Commit

Permalink
change pack table test time out and change search field to display name
Browse files Browse the repository at this point in the history
  • Loading branch information
lennessyy committed Jan 10, 2024
1 parent 8ac6f7b commit 812732e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/PacksTable/PacksTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ const FilteredTable: React.FC = () => {
}, []);

const filteredPacks = searchValue
? deprecatedPacks.filter((pack) => pack.displayName.includes(searchValue.toLowerCase()))
? deprecatedPacks.filter((pack) => pack.displayName.toLowerCase().includes(searchValue.toLowerCase()))
: deprecatedPacks;

return (
Expand Down

0 comments on commit 812732e

Please sign in to comment.