From c19f1c5bbcd5410355c92c5ca80bfb918f22adb9 Mon Sep 17 00:00:00 2001 From: Feruz Date: Tue, 24 Sep 2019 10:21:41 +0300 Subject: [PATCH] update links --- src/components/comments/container/commentsContainer.js | 2 +- src/utils/post.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/comments/container/commentsContainer.js b/src/components/comments/container/commentsContainer.js index a4be6dbe7..dbc2c84a3 100644 --- a/src/components/comments/container/commentsContainer.js +++ b/src/components/comments/container/commentsContainer.js @@ -199,7 +199,7 @@ class CommentsContainer extends Component { const { dispatch, intl, navigation, isOwnProfile } = this.props; if (index === 0) { - writeToClipboard(`https://steemit.com${get(selectedComment, 'url')}`).then(() => { + writeToClipboard(`https://esteem.app${get(selectedComment, 'url')}`).then(() => { dispatch( toastNotification( intl.formatMessage({ diff --git a/src/utils/post.js b/src/utils/post.js index 58e4df014..5c14cfd66 100644 --- a/src/utils/post.js +++ b/src/utils/post.js @@ -1,5 +1,5 @@ export const getPostUrl = url => { - const BASE_URL = 'https://steemit.com'; + const BASE_URL = 'https://esteem.app'; return BASE_URL + url; };