Skip to content
Advertisement

wProps updating in react dev tools but conditional jsx not rendering correctly

I’m having trouble understanding why my child component is not updating it’s conditional JSX from the renderFace method despite the prop values being updated in react dev tools and the value of the element being targeted also updating (“data-icon” value in photos 3&4).

initial null value of fetched props

populated prop values after fetched data

initial prop value

updated prop value after state is fetched / updated

As you can see from the photos the data is updating in the dev tools but the frown doesn’t turn upside down despite props value updating.

SearchBar is the child component of App

JavaScript
JavaScript

Advertisement

Answer

I debugged the problem down to determining if it was a logic issue or a library / src issue. I typed in some text which changed when the props were updated, inferring the issue was coming from the API. Installed the independent dependencies for the icons and it worked.

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