You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Warning: Text is changing an uncontrolled input of type text to be controlled. Input elements should not switch from uncontrolled to controlled (or vice versa). Decide between using a controlled or uncontrolled input element for the lifetime of the component. More info: https://fb.me/react-controlled-components
Have you seen this?
I'm using this from a child component, setting state up to the parent:
Have you seen this?
I'm using this from a child component, setting state up to the parent:
so on first render
this.props.query = {}
then I type into a field, submit moves it into the parent's state, passes it back down via props, and it results in
this.props.query = { name: 'foo' }
that seems normal to me, but react seems to be complaining...
The text was updated successfully, but these errors were encountered: