Skip to content

Instantly share code, notes, and snippets.

@jmarceli
Last active October 31, 2019 09:46
Show Gist options
  • Star 33 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save jmarceli/7aa4aed6e5e825e85e56 to your computer and use it in GitHub Desktop.
Save jmarceli/7aa4aed6e5e825e85e56 to your computer and use it in GitHub Desktop.
React errors explained

1

You will get one of these:

Uncaught (in promise) TypeError: Cannot read property 'toUpperCase' of undefined(…)

ReactCompositeComponent.js:870 Uncaught TypeError: Cannot read property 'displayName' of undefined

if you try to:

import { ComponentName } from 'ComponentName.jsx'

instead of:

import ComponentName from 'ComponentName.jsx'

2

This error:

Uncaught TypeError: Cannot read property 'toUpperCase' of undefined

might be caused by importing:

import { Link } from 'redux-router'

instead of

import { Link } from 'react-router'

3

Performance problems might be caused by 'redux-logger' and 'redux-devtools' packages.

Remove them from production build!

@yury-n
Copy link

yury-n commented Jan 6, 2017

thank you, saved me some time today!

@tdziezyk
Copy link

Thank you :)

@s-kennedy
Copy link

👍 thanks!

@nicnilov
Copy link

Thanks!

@janusch
Copy link

janusch commented Jun 27, 2017

Hey,
could you expplain me why the first one can be Uncaught (in promise) ?
I am trying to wrap my head around it. Why are we in a promise at the point of the error?
I am also getting Uncaught (in promise) when there is a syntax error in a react component.

@go2ngo
Copy link

go2ngo commented Aug 25, 2019

i have issue reading and solving react error. can i get a video or a material that will help me

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment