removed console logs

This commit is contained in:
bill bittner 2018-01-18 14:01:01 -08:00
parent 6931628595
commit e663460c87
2 changed files with 0 additions and 2 deletions

View file

@ -18,7 +18,6 @@ class Preview extends React.Component {
this.previewFile(newProps.file);
}
if (newProps.thumbnail !== this.props.thumbnail) {
console.log('updating thumbnail', this.props.thumbnail);
this.setState({imgSource: (newProps.thumbnail || this.state.defaultThumbnail)});
}
}

View file

@ -42,7 +42,6 @@ class NavBar extends React.Component {
// check for whether a channel is already logged in
let channelName, channelShortId, channelLongId;
({ channelName, channelShortId, channelLongId } = getUserCookies());
console.log(`userCookies`, getUserCookies());
console.log(`cookies found for channel: ${channelName} ${channelShortId} ${channelLongId}`);
this.props.onChannelLogin(channelName, channelShortId, channelLongId);
}