Now is not possible update the current data inside deferFn, I only can replace with new data. It would be nice if deferFn get the current state or data as a parameter, this can be able implement features like infinite scroll ```js const deferFn = (params, defaultParams, state, abortCtrl) => Promise.resolve([...state.data, ...newDataArray]) ... const { data, run } = useAsync({ deferFn }) ```