diff --git a/app/_locales/en/messages.json b/app/_locales/en/messages.json index ccb88c093694..745e60244e44 100644 --- a/app/_locales/en/messages.json +++ b/app/_locales/en/messages.json @@ -3352,7 +3352,8 @@ "message": "MetaMetrics" }, "onboardedMetametricsParagraph1": { - "message": "In addition to $1, we'd like to use data to understand how you interact with marketing communications." + "message": "In addition to $1, we'd like to use data to understand how you interact with marketing communications.", + "description": "$1 represents the 'onboardedMetametricsLink' locale string" }, "onboardedMetametricsParagraph2": { "message": "This helps us personalize what we share with you, like:" diff --git a/builds.yml b/builds.yml index c6837ae32cd1..626d9ef82eb4 100644 --- a/builds.yml +++ b/builds.yml @@ -189,7 +189,6 @@ env: - DEBUG: null - SUPPORT_LINK: https://support.metamask.io - SUPPORT_REQUEST_LINK: https://metamask.zendesk.com/hc/en-us - - METAMETRICS_SETTINGS_LINK: https://support.metamask.io/privacy-and-security/how-to-manage-your-metametrics-settings - SKIP_BACKGROUND_INITIALIZATION: false - ENABLE_MV3: true diff --git a/ui/helpers/constants/common.ts b/ui/helpers/constants/common.ts index ba9d6868ae6b..8170536690b0 100644 --- a/ui/helpers/constants/common.ts +++ b/ui/helpers/constants/common.ts @@ -10,7 +10,8 @@ export const MMI_WEB_SITE = _mmiWebSite; ///: END:ONLY_INCLUDE_IF // eslint-disable-next-line prefer-destructuring -export const METAMETRICS_SETTINGS_LINK = process.env.METAMETRICS_SETTINGS_LINK; +export const METAMETRICS_SETTINGS_LINK = + 'https://support.metamask.io/privacy-and-security/how-to-manage-your-metametrics-settings'; // eslint-disable-next-line prefer-destructuring export const SUPPORT_REQUEST_LINK = process.env.SUPPORT_REQUEST_LINK; export const CONTRACT_ADDRESS_LINK = _contractAddressLink;