add card to skip rewards validation

This commit is contained in:
Sean Yesmunt 2020-02-26 16:01:49 -05:00
parent 5f63a72679
commit d488575d6c

View file

@ -120,6 +120,22 @@ class UserVerify extends React.PureComponent<Props> {
</Fragment>
}
/>
<div className="section__divider">
<hr />
<p>{__('OR')}</p>
</div>
<Card
icon={ICONS.REMOVE}
title={__('Skip')}
subtitle={__('Rewards validation is optional.')}
actions={
<Fragment>
<Button href="https://chat.lbry.com" button="primary" label={__('Continue Without Rewards')} />
</Fragment>
}
/>
</div>
</React.Fragment>
);