Skip to content

Commit

Permalink
Remove unwanted text.
Browse files Browse the repository at this point in the history
We don't need press okay to continue flag.
  • Loading branch information
arunoda authored Oct 13, 2016
1 parent 82eab44 commit 2faf6e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/manager/components/CommentItem/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default class CommentItem extends Component {
}

deleteComment() {
const confirmDelete = confirm('Are you sure you want to delete this comment?\r\nPress OK to continue.');
const confirmDelete = confirm('Are you sure you want to delete this comment?');
if (confirmDelete === true) {
this.props.deleteComment();
}
Expand Down

0 comments on commit 2faf6e3

Please sign in to comment.