Skip to content
Snippets Groups Projects
Commit 0e9074b0 authored by Erik Johnston's avatar Erik Johnston
Browse files

Remove console.logs

parent 2bec7ec9
No related branches found
No related tags found
No related merge requests found
...@@ -121,12 +121,11 @@ module.exports = React.createClass({ ...@@ -121,12 +121,11 @@ module.exports = React.createClass({
); );
} }
console.log("deferreds " + deferreds.length);
if (deferreds.length) { if (deferreds.length) {
var self = this; var self = this;
q.all(deferreds).fail(function(err) { q.all(deferreds).fail(function(err) {
// TODO: Handle err // TODO: Handle err
console.error(err);
}).finally(function() { }).finally(function() {
self.setState({ self.setState({
uploadingRoomSettings: false, uploadingRoomSettings: false,
...@@ -213,7 +212,6 @@ module.exports = React.createClass({ ...@@ -213,7 +212,6 @@ module.exports = React.createClass({
} }
if (this.state.uploadingRoomSettings) { if (this.state.uploadingRoomSettings) {
console.log("Uploading");
roomEdit = <Loader/>; roomEdit = <Loader/>;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment