Skip to content

Instantly share code, notes, and snippets.

@wayou
Forked from jmarceli/README.md
Last active November 17, 2016 14:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wayou/e26e44cd632feae6b7aaa9b414aad49f to your computer and use it in GitHub Desktop.
Save wayou/e26e44cd632feae6b7aaa9b414aad49f 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'

or if you forget to export you component

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!

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