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
Are you using {...this.props} or cloneElement(element, this.props)? Your component is transferring its own props directly to a child element (eg. https://facebook.github.io/react/docs/transferring-props.html). When transferring props to a child component, you should ensure that you are not accidentally forwarding props that were intended to be interpreted by the parent component.
The text was updated successfully, but these errors were encountered:
Use of
{... this.props}
is causing this error in the browser console:From https://facebook.github.io/react/warnings/unknown-prop.html
The text was updated successfully, but these errors were encountered: