diff --git a/src/components/board.jsx b/src/components/board.jsx index 0b5963ad..18c92cf2 100644 --- a/src/components/board.jsx +++ b/src/components/board.jsx @@ -122,8 +122,6 @@ class Board extends Component { return ( Problem loading. Is it a valid repo? And have you exceeded your number of requests? Usually happens when not logged in because GitHub limits anonymous use of their API. - {err.message} - {JSON.stringify(err)} ); } diff --git a/src/components/loadable.jsx b/src/components/loadable.jsx index a5fadffb..310e28e3 100644 --- a/src/components/loadable.jsx +++ b/src/components/loadable.jsx @@ -46,9 +46,9 @@ class Loadable extends Component { ); } } - }; +}; - state = {status: STATUS.INITIAL, value: null, show: false}; + tate = {status: STATUS.INITIAL, value: null, show: false}; componentDidMount() { const {promise} = this.props; @@ -63,7 +63,7 @@ class Loadable extends Component { } onResolve = (value) => { - // TODO: Find out why this is being called multiple times + // TODO: Find out why this is being called multiple times this.setState({status: STATUS.RESOLVED, value: value}); };