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.js:36 Warning: Unknown propformValueon <div> tag. Remove this prop from the element. For details, see https://fb.me/react-unknown-prop in div (created by Fieldset) in Fieldset (created by Form) in Form (created by EditCompany) in div (created by Well) in Well (created by EditCompany) in div (created by EditCompany) in EditCompany (created by RouterContext) in div (created by Col) in Col (created by App) in div (created by Row) in Row (created by App) in div (created by Grid) in Grid (created by App) in App (created by RouterContext) in RouterContext (created by Router) in ScrollBehaviorContainer (created by Router) in Router in IntlProvider (created by LanguageProvider) in LanguageProvider (created by Connect(LanguageProvider)) in Connect(LanguageProvider) in Provider
The text was updated successfully, but these errors were encountered:
Hi,
When I'm running your example code I receive a warning in the error console. "unknow prop
formvalue
onHave you encountered this before? My example code is below..
`class Form extends React.Component {
constructor(props) {
super(props)
let formValue = createValue({
value: props.value,
onChange: this.onChange.bind(this)
})
this.state = {formValue}
}
onChange(formValue) {
this.setState({formValue})
}
render() {
return (
)
}
}
function EditCompany() {
return (
<FormattedMessage {...messages.header} />
<Form value={{firstName: 'Michael', lastName: 'Jackson'}} />
);
}
export default EditCompany;`
Console warning:
warning.js:36 Warning: Unknown prop
formValueon <div> tag. Remove this prop from the element. For details, see https://fb.me/react-unknown-prop in div (created by Fieldset) in Fieldset (created by Form) in Form (created by EditCompany) in div (created by Well) in Well (created by EditCompany) in div (created by EditCompany) in EditCompany (created by RouterContext) in div (created by Col) in Col (created by App) in div (created by Row) in Row (created by App) in div (created by Grid) in Grid (created by App) in App (created by RouterContext) in RouterContext (created by Router) in ScrollBehaviorContainer (created by Router) in Router in IntlProvider (created by LanguageProvider) in LanguageProvider (created by Connect(LanguageProvider)) in Connect(LanguageProvider) in Provider
The text was updated successfully, but these errors were encountered: