diff --git a/src/useAsync.ts b/src/useAsync.ts index e06dd94921..760bceca17 100644 --- a/src/useAsync.ts +++ b/src/useAsync.ts @@ -25,7 +25,7 @@ const useAsync = (fn: () => Promise, args?) => { useEffect(() => { let mounted = true; - const promise = memoized.apply(this, args); + const promise = memoized(); promise .then(value => {