Make the contact component throw an error if contact is undefined.

master
Tom Hacohen 2017-12-07 22:59:43 +00:00
parent 3883cbad1c
commit 6d83124376
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ class Contact extends React.Component {
render() {
if (this.props.contact === undefined) {
return (<div>Loading</div>);
throw Error('Contact should be defined!');
}
const contact = this.props.contact;