From e663460c8747375ddfb024f42990ff07d85c4cf2 Mon Sep 17 00:00:00 2001 From: bill bittner Date: Thu, 18 Jan 2018 14:01:01 -0800 Subject: [PATCH] removed console logs --- react/components/Preview.jsx | 1 - react/containers/NavBar/view.jsx | 1 - 2 files changed, 2 deletions(-) diff --git a/react/components/Preview.jsx b/react/components/Preview.jsx index 8b17714b..b67a8144 100644 --- a/react/components/Preview.jsx +++ b/react/components/Preview.jsx @@ -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)}); } } diff --git a/react/containers/NavBar/view.jsx b/react/containers/NavBar/view.jsx index 52283571..07094daf 100644 --- a/react/containers/NavBar/view.jsx +++ b/react/containers/NavBar/view.jsx @@ -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); }