update links

This commit is contained in:
Feruz 2019-09-24 10:21:41 +03:00
parent 1c101e0e26
commit c19f1c5bbc
2 changed files with 2 additions and 2 deletions

View File

@ -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({

View File

@ -1,5 +1,5 @@
export const getPostUrl = url => {
const BASE_URL = 'https://steemit.com';
const BASE_URL = 'https://esteem.app';
return BASE_URL + url;
};