A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
ciphermask/ui/components/app/permissions-connect-footer/permissions-connect-footer....

30 lines
820 B

import PropTypes from 'prop-types';
import React, { Component } from 'react';
import ZENDESK_URLS from '../../../helpers/constants/zendesk-url';
export default class PermissionsConnectFooter extends Component {
static contextTypes = {
t: PropTypes.func,
};
render() {
const { t } = this.context;
return (
<div className="permissions-connect-footer">
<div className="permissions-connect-footer__text">
<div>{t('onlyConnectTrust')}</div>
<div
className="permissions-connect-footer__text--link"
onClick={() => {
global.platform.openTab({
url: ZENDESK_URLS.USER_GUIDE_DAPPS,
});
}}
>
{t('learnMoreUpperCase')}
</div>
</div>
</div>
);
}
}