Skip to content

Commit d837250

Browse files
authored
Fix "Learn more" link on Connected Account notification (#16339)
1 parent b744eab commit d837250

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

ui/pages/home/home.component.js

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,6 @@ import BetaHomeFooter from './beta/beta-home-footer.component';
5858
import FlaskHomeFooter from './flask/flask-home-footer.component';
5959
///: END:ONLY_INCLUDE_IN
6060

61-
const LEARN_MORE_URL =
62-
'https://metamask.zendesk.com/hc/en-us/articles/360045129011-Intro-to-MetaMask-v8-extension';
63-
6461
function shouldCloseNotificationPopup({
6562
isNotification,
6663
totalUnapprovedCount,
@@ -526,8 +523,12 @@ export default class Home extends PureComponent {
526523
}}
527524
footer={
528525
<>
529-
<a href={LEARN_MORE_URL} target="_blank" rel="noopener noreferrer">
530-
{t('learnMore')}
526+
<a
527+
href={ZENDESK_URLS.USER_GUIDE_DAPPS}
528+
target="_blank"
529+
rel="noopener noreferrer"
530+
>
531+
{t('learnMoreUpperCase')}
531532
</a>
532533
<Button
533534
type="primary"

0 commit comments

Comments
 (0)