fix use of legacy get.status.im domain

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2020-06-02 22:23:45 +02:00
parent f1fca20448
commit 4a66fb04bf
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
3 changed files with 3 additions and 3 deletions

View File

@ -18,7 +18,7 @@ contributors:
## Communication
(required)
`status channel (same as swarm id)`: [#000-foobar](https://get.status.im/chat/public/000-foobar)
`status channel (same as swarm id)`: [#000-foobar](https://join.status.im/000-foobar)
`sync frequency`: Weekly Sync
TODO

View File

@ -21,7 +21,7 @@ const ContactUser = ({t, isStatus, userInfo, isBuyer, onClick}) => {
</Row>;
if (isStatus && userContactObject.method === 'Status') {
return <a href={"https://get.status.im/user/" + userContactObject.userId}
return <a href={"https://join.status.im/u/" + userContactObject.userId}
rel="noopener noreferrer" target="_blank">{button}</a>;
}

View File

@ -78,7 +78,7 @@ const EscrowDetail = ({t, escrow, currentPrice, isBuyer, arbitrationDetails, onC
</Col>
<Col xs={3} className="pt-3">
{isStatus && otherUserContactObj.method === 'Status' &&
<a href={"https://get.status.im/user/" + otherUserContactObj.userId}
<a href={"https://join.status.im/u/" + otherUserContactObj.userId}
rel="noopener noreferrer" target="_blank" className="btn btn-primary btn-sm">
{t('escrow.openChat.chat')}
</a>}