From b64c535bb9a10af3c043962e54a2648b34ce5d78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20SANTOS?= Date: Wed, 3 Aug 2022 18:08:28 +0100 Subject: [PATCH] urls updated --- app/components/Views/ErrorBoundary/index.js | 2 +- app/components/Views/Settings/AppInformation/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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')); };