Unknown props in React v15.2
See original GitHub issueJust noticed this warning when using version 15.2 of React:
Warning:
Unknown props `disablePreview`, `disableClick` on <div> tag.
Remove these props from the element.
For details, see https://fb.me/react-unknown-prop
in div (created by Dropzone)
in Dropzone (created by xxx)
The link provided seems to indicate that the problem is at line 219 of index.js.
216 <div
...
219 {...props /* expand user provided props first so event handlers are never overridden */}
...
226 >
Anyway, I don’t know much about this stuff, might be I screwed up something else. Just wanted to let you know in case it’s going to show up for other people (:
Issue Analytics
- State:
- Created 7 years ago
- Reactions:4
- Comments:5 (1 by maintainers)
Top Results From Across the Web
Unknown Prop Warning - React
The unknown-prop warning will fire if you attempt to render a DOM element with a prop that is not recognized by React as...
Read more >React v15.3.2 and react-bootstrap v0.30.6 -- Unknown prop ...
React -bootstrap Button component doesn't seem to have an increment prop. The component may be passing such props to underlying html elements. So ......
Read more >How to validate React props using PropTypes - LogRocket Blog
Learn how to validate props with React PropTypes, React's internal mechanism for adding type checking to component props.
Read more >Transferring Props | React
In that case you can use destructuring assignment with rest properties to extract a set of unknown properties. List out all the properties...
Read more >react-resizable | Yarn - Package Manager
react -resizable ... React-Resizable ... Bugfix: Remove unknown prop handleAxis making it to DOM elements, causing a warning in dev.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Beautiful, thanks for the quick work.
A follow up fix in #197