Skip to content

Commit

Permalink
fix: Filtering bug
Browse files Browse the repository at this point in the history
  • Loading branch information
PintoGideon committed Nov 1, 2024
1 parent 33edd28 commit 4ff0e74
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/components/Store/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -418,11 +418,17 @@ const Store: React.FC = () => {
{
key: "name",
label: "Name",
onClick: () => setSearchField("name"),
},
{
key: "category",
label: "Category",
onClick: () => setSearchField("category"),
},
{ key: "category", label: "Category" },
{
key: "authors",
label: "Author",
onClick: () => setSearchField("authors"),
},
];

Expand Down

0 comments on commit 4ff0e74

Please sign in to comment.