diff --git a/app/components/Views/ErrorBoundary/index.js b/app/components/Views/ErrorBoundary/index.js index 9075c74a31d..12612aa0621 100644 --- a/app/components/Views/ErrorBoundary/index.js +++ b/app/components/Views/ErrorBoundary/index.js @@ -225,7 +225,7 @@ class ErrorBoundary extends Component { }; openTicket = () => { - const url = 'https://metamask.zendesk.com/hc/en-us/requests/new'; + const url = 'https://metamask.zendesk.com/hc/en-us'; Linking.openURL(url); }; diff --git a/app/components/Views/Settings/AppInformation/index.js b/app/components/Views/Settings/AppInformation/index.js index 9d429c552ee..477c4d7fdba 100644 --- a/app/components/Views/Settings/AppInformation/index.js +++ b/app/components/Views/Settings/AppInformation/index.js @@ -155,7 +155,7 @@ export default class AppInformation extends PureComponent { }; onContactUs = () => { - const url = 'https://metamask.zendesk.com/hc/en-us/requests/new'; + const url = 'https://metamask.zendesk.com/hc/en-us'; this.goTo(url, strings('drawer.metamask_support')); };