How to Fix the React ‘useEffect function must return a cleanup function or nothing’ Warning Message?

John Au-Yeung
JavaScript in Plain English
2 min readJun 24, 2021

--

Photo by Raimond Klavins on Unsplash

If we have async functions in our useEffect hook, we may get the ‘useEffect function must return a cleanup function or nothing’ warning in our console.

In this article, we’ll look at how to fix this warning.

Moving Async Functions Outside the useEffect…

--

--