diff --git a/client/modules/IDE/components/NewPasswordView.js b/client/modules/IDE/components/NewPasswordView.js
index 2a0a83b2..7089cefc 100644
--- a/client/modules/IDE/components/NewPasswordView.js
+++ b/client/modules/IDE/components/NewPasswordView.js
@@ -18,8 +18,6 @@ class NewPasswordView extends React.Component {
'new-password': true,
'new-password--invalid': this.props.user.resetPasswordInvalid
});
- console.log(this.props.user);
- console.log('rerendering!!');
return (
Set a New Password
diff --git a/client/modules/IDE/components/SketchList.js b/client/modules/IDE/components/SketchList.js
index 070308d5..a47912d9 100644
--- a/client/modules/IDE/components/SketchList.js
+++ b/client/modules/IDE/components/SketchList.js
@@ -39,8 +39,6 @@ class SketchList extends React.Component {
{(() => { // eslint-disable-line
- console.log(this.props.username);
- console.log(this.props.user.username);
if (this.props.username === this.props.user.username || this.props.username === undefined) {
return (
|