fix(from-store): remove unnecessary console.log statement
fix(from-store): fix incorrect argument in getStoreComponents function call
This commit is contained in:
parent
e9d9891d75
commit
aa833ee6d0
1 changed files with 2 additions and 1 deletions
|
|
@ -16,7 +16,8 @@ export default function FromStore(): JSX.Element {
|
|||
|
||||
const handleGetComponents = () => {
|
||||
setLoading(true);
|
||||
getStoreComponents(null, null, true, "name", null, true)
|
||||
console.log("get store components");
|
||||
getStoreComponents(null, null, null, "name", null, true)
|
||||
.then((res) => {
|
||||
setLoading(false);
|
||||
setData(res?.results ?? []);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue