Skip to content
Advertisement

Why .then() which is in useEffect is not updating my state

targetMovie is null when it comes to rednering. I couldn’t find any solutions. First time having unsolvable problem. Please help!

JavaScript

Advertisement

Answer

You need to represent 3 states:

  1. You’re currently waiting on getMovie to complete
  2. getMovie completed successfully
  3. getMovie completed and returned null/undefined

You’re currently using the same condition (!targetMovie) to represent both 1. and 3. which is why you’re running into issues.

Try this:

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement