(value: Record<string, any>)
| 198 | } |
| 199 | |
| 200 | const handleChildEvent = async (value: Record<string, any>) => { |
| 201 | setUpdatePrevButton(false) |
| 202 | setLimit(value.limit) |
| 203 | await fetchData(value); |
| 204 | } |
| 205 | const onDeleteConfirm = async () => { |
| 206 | try { |
| 207 | await deletePlugin(bundleId) |
nothing calls this directly
no test coverage detected