Skip to content

Commit 17556e7

Browse files
committed
chore: update security and privacy policy description
1 parent 002ede0 commit 17556e7

File tree

5 files changed

+17
-2
lines changed

5 files changed

+17
-2
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1616

1717
### Changed
1818
- Update multichain network controller to implement `getNetworksWithActivityByAccounts` method and add state management for networks with activity ([#31414](https://github.com/MetaMask/metamask-extension/pull/31414))
19+
- Update security and privacy policy description to reflect Solana account handling ([#32229](https://github.com/MetaMask/metamask-extension/pull/32208))
1920

2021
### Fixed
2122
- Fix NFT removal on different networks ([#32102](https://github.com/MetaMask/metamask-extension/pull/32102))

app/_locales/en/messages.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/_locales/en_GB/messages.json

+4-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ui/helpers/constants/zendesk-url.js

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ const ZENDESK_URLS = {
33
'https://support.metamask.io/configure/accounts/what-is-a-smart-account',
44
ADD_CUSTOM_TOKENS:
55
'https://support.metamask.io/managing-my-tokens/custom-tokens/how-to-display-tokens-in-metamask/',
6+
ADD_SOLANA_ACCOUNTS:
7+
'https://support.metamask.io/configure/networks/how-to-use-non-evm-networks/',
68
ADD_MISSING_ACCOUNTS:
79
'https://support.metamask.io/managing-my-wallet/accounts-and-addresses/how-to-add-missing-accounts-after-restoring-with-secret-recovery-phrase/',
810
BASIC_SAFETY:

ui/pages/onboarding-flow/privacy-settings/privacy-settings.js

+9
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ import {
2121
PRIVACY_POLICY_LINK,
2222
TRANSACTION_SIMULATIONS_LEARN_MORE_LINK,
2323
} from '../../../../shared/lib/ui-utils';
24+
import ZENDESK_URLS from '../../../helpers/constants/zendesk-url';
2425
import Button from '../../../components/ui/button';
2526

2627
import {
@@ -464,6 +465,14 @@ export default function PrivacySettings() {
464465
key="link"
465466
target="_blank"
466467
rel="noopener noreferrer"
468+
>
469+
,{t('privacyMsg')}
470+
</a>,
471+
<a
472+
href={ZENDESK_URLS.ADD_SOLANA_ACCOUNTS}
473+
key="link"
474+
target="_blank"
475+
rel="noopener noreferrer"
467476
>
468477
{t('privacyMsg')}
469478
</a>,

0 commit comments

Comments
 (0)