Aborting Data Fetching
Learn about aborting data fetching in React.
We'll cover the following...
There is a slight problem in the page components at the moment when they request data and set it in the state. The problem is that if the user navigates away from the page while the data is still being fetched, the state will attempt to be set on a component that no longer exists. We are going to resolve this issue on ...