diff --git a/src/screens/editor/container/editorContainer.js b/src/screens/editor/container/editorContainer.js index 9a38928f8..ad49e8b43 100644 --- a/src/screens/editor/container/editorContainer.js +++ b/src/screens/editor/container/editorContainer.js @@ -96,9 +96,6 @@ class EditorContainer extends Component { tags: post.json_metadata.tags, }, }, - () => { - // this._getPurePost(post.author, post.permlink); - }, ); } @@ -133,21 +130,6 @@ class EditorContainer extends Component { } }; - _getPurePost = (author, permlink) => { - getPurePost(author, permlink) - .then((result) => { - if (result) { - this.setState(prevState => ({ - draftPost: { - ...prevState.draftPost, - body: result.body, - }, - })); - } - }) - .catch(() => {}); - }; - _handleRoutingAction = (routingAction) => { this.setState({ isCameraOrPickerOpen: true });