(value: any)
| 160 | const [fileLoading, setFileLoading] = useState(false); |
| 161 | |
| 162 | const handleChildEvent = async (value: any) => { |
| 163 | setLimit(value.limit) |
| 164 | setUpdatePrevButton(false) |
| 165 | await fetchData(collectionId, value); |
| 166 | } |
| 167 | useEffect(() => { |
| 168 | const params = { |
| 169 | limit: 20 |
nothing calls this directly
no test coverage detected