diff --git a/Libraries/ReactIOS/verifyPropTypes.js b/Libraries/ReactIOS/verifyPropTypes.js index 1974716ba..07432eacb 100644 --- a/Libraries/ReactIOS/verifyPropTypes.js +++ b/Libraries/ReactIOS/verifyPropTypes.js @@ -50,6 +50,9 @@ function verifyPropTypes( viewConfig.uiViewClassName + '.' + prop + '` of native type `' + nativeProps[prop] + '`'; }; + message += '\nIf you haven\'t changed this prop yourself, this usually means that ' + + 'your versions of the native code and JavaScript code are out of sync. Updating both ' + + 'should make this error go away.'; throw new Error(message); } }