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.
27 lines
804 B
27 lines
804 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">
|
|
<img src="/images/mm-secure.svg" />
|
|
<div className="permissions-connect-footer__text">
|
|
<div>{ t('onlyConnectTrust') }</div>
|
|
<div
|
|
className="permissions-connect-footer__text--link"
|
|
onClick={() => {
|
|
global.platform.openWindow({ url: 'https://medium.com/metamask/privacy-mode-is-now-enabled-by-default-1c1c957f4d57' })
|
|
}}
|
|
>{ t('learnAboutRisks') }
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
}
|
|
|