Failed PropType errors on console?
See original GitHub issueWhat version of React-Table are you using?
6.7.1
What bug are you experiencing, or what feature are you proposing?
My developer log in chrome is showing failed prop types for all the decorative component props.

Here is a snippet of my code: **the errors also show on the examples here ` render() {
const columns = [
{
Header: 'id',
accessor: 'id'
}, {
Header: 'Name',
accessor: 'name'
}
]
return (
<div className='content'>
<NavBar />
{
this.state.showModal ? <PlayerModal /> : null
}
<ReactTable
data={this.props.teamStats}
columns={columns}
/>
</div>
)
} }`
Issue Analytics
- State:
- Created 6 years ago
- Reactions:1
- Comments:8 (1 by maintainers)
Top Results From Across the Web
Getting a console message : Failed prop type: The prop `value ...
I am getting proptype error due to which I am not able to proper url, on my chrome instead of getting an address...
Read more >Prop is the correct type, but console still indicates failed prop ...
If I change my code from PropTypes.object to PropTypes.array , then the console error changes to: Warning: Failed prop type: Invalid prop data...
Read more >Making unit tests fail when PropTypes error - Jack Franklin
When running our test suite with Jest, I noticed that I'd often miss the console warnings that the PropTypes library emits if some...
Read more >How to forget about type errors in your React props with ...
In this article, we will be looking at how to making your debugging process faster with prop types in React, what they are,...
Read more >Don't Call PropTypes Warning - React
Once this happens, any code that calls these functions manually (that isn't stripped in production) will throw an error. Declaring PropTypes is still...
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
V 6.7.4 seems to resolve the last of the propTypes issues.
BTW, sorry about this one guys. Somehow this PR slipped past me on testing.