Added ID filtering on Store
This commit is contained in:
parent
12d6b4746a
commit
d4cef3588c
1 changed files with 1 additions and 1 deletions
|
|
@ -29,7 +29,6 @@ import StoreApiKeyModal from "../../modals/StoreApiKeyModal";
|
|||
import { storeComponent } from "../../types/store";
|
||||
import { cn } from "../../utils/utils";
|
||||
export default function StorePage(): JSX.Element {
|
||||
const { id } = useParams();
|
||||
const { validApiKey, setValidApiKey, hasApiKey, loadingApiKey } =
|
||||
useContext(StoreContext);
|
||||
const { apiKey } = useContext(AuthContext);
|
||||
|
|
@ -37,6 +36,7 @@ export default function StorePage(): JSX.Element {
|
|||
const { setTabId } = useContext(FlowsContext);
|
||||
const [loading, setLoading] = useState(true);
|
||||
const [loadingTags, setLoadingTags] = useState(true);
|
||||
const { id } = useParams();
|
||||
const [filteredCategories, setFilterCategories] = useState<any[]>([]);
|
||||
const [inputText, setInputText] = useState<string>("");
|
||||
const [searchData, setSearchData] = useState<storeComponent[]>([]);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue