removed console logs
This commit is contained in:
parent
6931628595
commit
e663460c87
2 changed files with 0 additions and 2 deletions
|
@ -18,7 +18,6 @@ class Preview extends React.Component {
|
||||||
this.previewFile(newProps.file);
|
this.previewFile(newProps.file);
|
||||||
}
|
}
|
||||||
if (newProps.thumbnail !== this.props.thumbnail) {
|
if (newProps.thumbnail !== this.props.thumbnail) {
|
||||||
console.log('updating thumbnail', this.props.thumbnail);
|
|
||||||
this.setState({imgSource: (newProps.thumbnail || this.state.defaultThumbnail)});
|
this.setState({imgSource: (newProps.thumbnail || this.state.defaultThumbnail)});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,7 +42,6 @@ class NavBar extends React.Component {
|
||||||
// check for whether a channel is already logged in
|
// check for whether a channel is already logged in
|
||||||
let channelName, channelShortId, channelLongId;
|
let channelName, channelShortId, channelLongId;
|
||||||
({ channelName, channelShortId, channelLongId } = getUserCookies());
|
({ channelName, channelShortId, channelLongId } = getUserCookies());
|
||||||
console.log(`userCookies`, getUserCookies());
|
|
||||||
console.log(`cookies found for channel: ${channelName} ${channelShortId} ${channelLongId}`);
|
console.log(`cookies found for channel: ${channelName} ${channelShortId} ${channelLongId}`);
|
||||||
this.props.onChannelLogin(channelName, channelShortId, channelLongId);
|
this.props.onChannelLogin(channelName, channelShortId, channelLongId);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue