diff --git a/ui/component/invited/view.jsx b/ui/component/invited/view.jsx
index 7b9180cf0..ce51cd162 100644
--- a/ui/component/invited/view.jsx
+++ b/ui/component/invited/view.jsx
@@ -8,6 +8,7 @@ import { buildURI, parseURI } from 'lbry-redux';
import { rewards as REWARDS, ERRORS } from 'lbryinc';
import { formatLbryUrlForWeb } from 'util/url';
import ChannelContent from 'component/channelContent';
+import I18nMessage from 'component/i18nMessage';
type Props = {
user: any,
@@ -128,40 +129,57 @@ function Invited(props: Props) {
}
if (!rewardsApproved) {
+ const signUpButton = (
+
+ );
+
return (
-
- {referrerIsChannel
- ? __(`Content freedom and a present from %channel_name% are waiting for you. `, {
- channel_name: referrerChannelName,
- })
- : __(`Content freedom and a present are waiting for you. `)}
- {' '}
- to claim it.
-
-
+
+ {referrerIsChannel ? (
+
+ Content freedom and a present from %channel_name% are waiting for you. %signup_link% to claim it.
+
+ ) : (
+
+ Content freedom and a present are waiting for you. %signup_link% to claim it.
+
+ )}
+