Remove logging

This commit is contained in:
Tom Moor
2017-12-08 20:08:47 -08:00
parent d7d13179d6
commit 466986eabb

View File

@@ -72,7 +72,6 @@ class MarkdownEditor extends Component {
onChange = (change: Change) => {
if (this.editorValue !== change.value) {
this.props.onChange(Markdown.serialize(change.value));
console.log('this.props.onChange', Markdown.serialize(change.value));
this.editorValue = change.value;
}
};