removed console logs

This commit is contained in:
bill bittner 2018-01-12 14:30:51 -08:00
parent 6b51c9ebd0
commit def4e03707
3 changed files with 0 additions and 3 deletions

View file

@ -22,7 +22,6 @@ class ChannelSelector extends React.Component {
} }
} }
componentWillReceiveProps ({ loggedInChannelName }) { componentWillReceiveProps ({ loggedInChannelName }) {
console.log('ChannelSelector will receive props');
if (loggedInChannelName) { if (loggedInChannelName) {
this.selectOption(loggedInChannelName); this.selectOption(loggedInChannelName);
} }

View file

@ -14,7 +14,6 @@ class Preview extends React.Component {
this.previewFile(this.props.file); this.previewFile(this.props.file);
} }
componentWillReceiveProps (newProps) { componentWillReceiveProps (newProps) {
console.log('Preview will receive props', newProps);
this.previewFile(newProps.file); this.previewFile(newProps.file);
} }
previewFile (file) { previewFile (file) {

View file

@ -23,7 +23,6 @@ class UrlChooser extends React.Component {
} }
} }
componentWillReceiveProps ({claim: newClaim}) { componentWillReceiveProps ({claim: newClaim}) {
console.log('PublishUrlInput will receive new props (claim)', newClaim);
if (newClaim) { if (newClaim) {
this.checkClaimIsAvailable(newClaim); this.checkClaimIsAvailable(newClaim);
} else { } else {