// @flow import * as ICONS from 'constants/icons'; import React, { Fragment } from 'react'; import Button from 'component/button'; import CardVerify from 'component/cardVerify'; import { Lbryio } from 'lbryinc'; import Card from 'component/common/card'; type Props = { errorMessage: ?string, isPending: boolean, verifyUserIdentity: string => void, verifyPhone: () => void, fetchUser: () => void, skipLink?: string, }; class UserVerify extends React.PureComponent { constructor() { super(); (this: any).onToken = this.onToken.bind(this); } onToken(data: { id: string }) { this.props.verifyUserIdentity(data.id); } render() { const { errorMessage, isPending, verifyPhone, fetchUser, skipLink } = this.props; return (

{__('Extra Verification Needed')}

{__( "We weren't able to auto-approve you for rewards. Please complete one of the steps below to unlock them." )}{' '}

); } } export default UserVerify;