diff --git a/src/app/shared/share/share.service.ts b/src/app/shared/share/share.service.ts index 9736d63c7..b4687ffad 100644 --- a/src/app/shared/share/share.service.ts +++ b/src/app/shared/share/share.service.ts @@ -43,9 +43,7 @@ export class ShareService { 'invitation.myReferralCodeAtCaptureAppIs', { referralCode: referralCode } ); - return Share.share({ - text: text, - url: 'https://www.numbersprotocol.io/#products', - }); + const urlToDownloadApp = 'https://www.numbersprotocol.io/#products'; + return Share.share({ text: text + '\n' + urlToDownloadApp }); } }