Skip to content

Commit

Permalink
Remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
WrathfulSpatula committed Mar 10, 2022
1 parent b296e35 commit 156ccae
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/components/SubmissionBox.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ class SubmissionBox extends React.Component {
description: !this.props.item.description ? '' : ((this.props.item.description.length > 500) ? (this.props.item.description.substring(0, 497) + '...') : this.props.item.description)
}

console.log(this.state.tags)

this.handleUpVoteOnClick = this.handleUpVoteOnClick.bind(this)
this.handleDeleteOnClick = this.handleDeleteOnClick.bind(this)
this.handleExternalLinkClick = this.handleExternalLinkClick.bind(this)
Expand Down

0 comments on commit 156ccae

Please sign in to comment.