diff --git a/src/useAsync.ts b/src/useAsync.ts index 760bceca17..e06dd94921 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(); + const promise = memoized.apply(this, args); promise .then(value => {