Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit 304e107

Browse files
committed
sup-2153 fix getting started/member onboarding links
1 parent f8e4cff commit 304e107

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

app/my-dashboard/srms/srms.jade

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ section(ng-hide="vm.loading")
1616

1717
a.tc-btn.tc-btn-s.tc-btn-wide.tc-btn-ghost(ng-href="https://community.{{DOMAIN}}/wiki/display/tc/Algorithm+Problem+Set+Analysis") Match Editorials
1818

19-
a.tc-btn.tc-btn-s.tc-btn-wide.tc-btn-ghost(ng-href="https://www.{{DOMAIN}}/member-onboarding") Learn More
19+
a.tc-btn.tc-btn-s.tc-btn-wide.tc-btn-ghost(ng-href="https://www.{{DOMAIN}}/member-onboarding/learning-practicing-skills/") Learn More
2020

2121
.srms-links(ng-hide="vm.loading")
2222
a(ui-sref="my-srms") View Past SRMs

app/my-srms/my-srms.jade

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
empty-state-placeholder(title="Past SRMs", description="You have not participated in any SRMs yet.", show="vm.statusFilter === 'past'")
2020
.info-links
2121
a.find-srms.tc-btn.tc-btn-s.tc-btn-ghost(ng-href="https://www.{{DOMAIN}}/challenges/data?pageIndex=1") Find SRMs
22-
a.learn-more(href="https://www.{{DOMAIN}}/member-onboarding") Learn More
22+
a.learn-more(href="https://www.{{DOMAIN}}/member-onboarding/competing-in-an-algorithm-match-srm/ ") Learn More
2323
empty-state-placeholder(title="Upcoming SRMs", description="There are no upcoming SRMs.", show="vm.statusFilter === 'future'")
2424

2525
.has-srms(ng-show="vm.srms.length")

app/services/emptyState.service.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
cssClass: "find-challenges tc-btn tc-btn-s"
6565
}, {
6666
title: "Learn More",
67-
url: _getUrl("/member-onboarding"),
67+
url: _getUrl("/getting-started"),
6868
cssClass: "learn-more"
6969
}]
7070
},
@@ -86,7 +86,7 @@
8686
cssClass: "find-challenges tc-btn tc-btn-s tc-btn-ghost"
8787
}, {
8888
title: "Learn More",
89-
url: _getUrl("/member-onboarding"),
89+
url: _getUrl("/getting-started"),
9090
cssClass: "learn-more"
9191
}]
9292
},
@@ -99,7 +99,7 @@
9999
cssClass: "find-challenges tc-btn tc-btn-s tc-btn-ghost"
100100
}, {
101101
title: "Learn More",
102-
url: _getUrl("/member-onboarding"),
102+
url: _getUrl("/getting-started"),
103103
cssClass: "learn-more"
104104
}]
105105
},
@@ -112,7 +112,7 @@
112112
cssClass: "find-challenges tc-btn tc-btn-s tc-btn-ghost"
113113
}, {
114114
title: "Learn More",
115-
url: _getUrl("/member-onboarding"),
115+
url: _getUrl("/getting-started"),
116116
cssClass: "learn-more"
117117
}]
118118
},

app/services/nav.service.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
{ 'href': CONSTANTS.ARENA_URL, 'text': 'COMPETITIVE PROGRAMMING', 'icon': '/images/nav/track-cp.svg', 'target': '_blank' },
2323
],
2424
'learn': [
25-
{ 'href': '/member-onboarding/', 'text': 'GET STARTED', 'icon': '/images/nav/rocket.svg' },
25+
{ 'href': '/getting-started/', 'text': 'GETTING STARTED', 'icon': '/images/nav/rocket.svg' },
2626
{ 'href': '/community/design/', 'text': 'DESIGN', 'icon': '/images/nav/book-design.svg' },
2727
{ 'href': '/community/development/', 'text': 'DEVELOPMENT', 'icon': '/images/nav/book-develop.svg' },
2828
{ 'href': '/community/data-science/', 'text': 'DATA SCIENCE', 'icon': '/images/nav/book-data.svg' },

0 commit comments

Comments
 (0)