Cleaning console.logs

This commit is contained in:
Belen Curcio
2017-09-19 11:13:06 -03:00
parent f00e8dc335
commit f1f9868028
3 changed files with 1 additions and 6 deletions
@@ -19,8 +19,6 @@ class FlaggedAccounts extends React.Component {
me,
viewUserDetail,
} = this.props;
console.log('Flagged Accounts ROOT', this.props.root);
const hasResults = users.nodes && !!users.nodes.length;
@@ -26,14 +26,13 @@ class CommunityContainer extends Component {
}
render() {
return <Community {...this.props} />
return <Community {...this.props} />;
}
}
const mapStateToProps = (state) => ({
community: state.community,
});
const withData = withQuery(gql`
query TalkAdmin_FlaggedUsernamesCount {
flaggedUsernamesCount: userCount(query: {
@@ -50,8 +50,6 @@ class FlaggedAccountsContainer extends Component {
};
render() {
console.log('Flagged AccountsContainer', this.props);
if (this.props.data.error) {
return <div>{this.props.data.error.message}</div>;
}