I\'m getting this weird warning message in the console for my React app.
Warning: Failed propType: checker is not a function Check the render method of <
FWIW, I was getting Failed PropType: typeChecker is not a function
. I noticed that in my PropTypes.arrayOf()
properties, I was passing in an object of PropTypes e.g. PropTypes.arrayOf({})
instead of passing in PropTypes.shape()
e.g. PropTypes.arrayOf(PropTypes.shape({})
Making this change eliminated the error message.