diff --git a/app/_locales/en/messages.json b/app/_locales/en/messages.json index cc7ab6668186..f634f3bfb581 100644 --- a/app/_locales/en/messages.json +++ b/app/_locales/en/messages.json @@ -769,7 +769,8 @@ "message": "Bitcoin" }, "bitcoinSupportToggleDescription": { - "message": "Turning on this feature will give you the option to add a Bitcoin Account to your MetaMask Extension derived from your existing Secret Recovery Phrase. This is an experimental Beta feature, so you should use it at your own risk." + "message": "Turning on this feature will give you the option to add a Bitcoin Account to your MetaMask Extension derived from your existing Secret Recovery Phrase. This is an experimental Beta feature, so you should use it at your own risk. To give us feedback on this new Bitcoin experience, please fill out this $1.", + "description": "$1 is the link to a product feedback form" }, "bitcoinSupportToggleTitle": { "message": "Enable \"Add a new Bitcoin account (Beta)\"" diff --git a/shared/constants/urls.ts b/shared/constants/urls.ts index a44d7d2573c8..66ce3e1c9438 100644 --- a/shared/constants/urls.ts +++ b/shared/constants/urls.ts @@ -1,3 +1,7 @@ export enum BaseUrl { Portfolio = 'https://portfolio.metamask.io', } + +export enum SurveyUrl { + BtcSupport = 'https://www.getfeedback.com/r/yG6FbiW5', +} diff --git a/ui/pages/settings/experimental-tab/experimental-tab.component.tsx b/ui/pages/settings/experimental-tab/experimental-tab.component.tsx index bbd60e426e8d..c1dcdf7d0397 100644 --- a/ui/pages/settings/experimental-tab/experimental-tab.component.tsx +++ b/ui/pages/settings/experimental-tab/experimental-tab.component.tsx @@ -29,6 +29,10 @@ import { ///: END:ONLY_INCLUDE_IF } from '../../../helpers/constants/design-system'; +///: BEGIN:ONLY_INCLUDE_IF(build-flask) +import { SurveyUrl } from '../../../../shared/constants/urls'; +///: END:ONLY_INCLUDE_IF + type ExperimentalTabProps = { bitcoinSupportEnabled: boolean; setBitcoinSupportEnabled: (value: boolean) => void; @@ -263,7 +267,16 @@ export default class ExperimentalTab extends PureComponent {this.renderToggleSection({ title: t('bitcoinSupportToggleTitle'), - description: t('bitcoinSupportToggleDescription'), + description: t('bitcoinSupportToggleDescription', [ + + {t('form')} + , + ]), toggleValue: bitcoinSupportEnabled, toggleCallback: (value) => { trackEvent({