1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 09:57:02 +01:00

Import SRP page (#13568)

* Import SRP page

* Moved url link for SRP to the zendesk urls constant in the constants folder
This commit is contained in:
VSaric 2022-02-25 17:15:57 +01:00 committed by GitHub
parent d239d0fddb
commit bd54fafe7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 3 deletions

View File

@ -7,6 +7,8 @@ const ZENDESK_URLS = {
'https://metamask.zendesk.com/hc/en-us/articles/360015489331',
TOKEN_SAFETY_PRACTICES:
'https://metamask.zendesk.com/hc/en-us/articles/4403988839451',
SECRET_RECOVERY_PHRASE:
'https://metamask.zendesk.com/hc/en-us/articles/360060826432-What-is-a-Secret-Recovery-Phrase-and-how-to-keep-your-crypto-wallet-secure',
};
export default ZENDESK_URLS;

View File

@ -18,10 +18,11 @@ import {
import { ONBOARDING_CREATE_PASSWORD_ROUTE } from '../../../helpers/constants/routes';
import { clearClipboard } from '../../../helpers/utils/util';
import { useI18nContext } from '../../../hooks/useI18nContext';
import ZENDESK_URLS from '../../../helpers/constants/zendesk-url';
export default function ImportSRP({ submitSecretRecoveryPhrase }) {
const [secretRecoveryPhrase, setSecretRecoveryPhrase] = useState('');
const [revealSRP, setRevealSRP] = useState(true);
const [revealSRP, setRevealSRP] = useState(false);
const [error, setError] = useState('');
const history = useHistory();
const t = useI18nContext();
@ -56,11 +57,11 @@ export default function ImportSRP({ submitSecretRecoveryPhrase }) {
<a
key="learnMore"
type="link"
href="https://metamask.zendesk.com/hc/en-us/articles/360036464651"
href={ZENDESK_URLS.SECRET_RECOVERY_PHRASE}
target="_blank"
rel="noopener noreferrer"
>
{t('learnMore')}
{t('learnMoreUpperCase')}
</a>,
])}
</Typography>