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.
Tag:
Branch:
Tree:
a8643af481
develop
feature/default_network_editable
v10.22.3
${ noResults }
31 lines
814 B
31 lines
814 B
import PropTypes from 'prop-types';
|
|||
import React, { Component } from 'react';
|
|||
|
|||
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:
|
|||
'https://medium.com/metamask/privacy-mode-is-now-enabled-by-default-1c1c957f4d57',
|
|||
});
|
|||
}}
|
|||
|
>
|
||
{t('learnMore')}
|
|||
</div>
|
|||
</div>
|
|||
</div>
|
|||
);
|
|||
}
|
|||
}
|