Fixes StackCraft search and work on 516 (#26492)

* Fixes StackCraft for 516

* Rebuild
This commit is contained in:
Aylong
2024-08-17 12:05:00 +03:00
committed by GitHub
parent 4d66ba4aab
commit ceccd06c28
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ const Recipes = (props, context) => {
const { amount, recipes } = data;
const [searchText, setSearchText] = useLocalState(context, 'searchText', '');
const filteredRecipes = filterRecipeList(recipes, createSearch(searchText, item));
const filteredRecipes = filterRecipeList(recipes, createSearch(searchText));
const [searchActive, setSearchActive] = useLocalState(context, '', false);
return (
File diff suppressed because one or more lines are too long