Skip to content

Commit 9858be2

Browse files
Merge pull request #5115 from topcoder-platform/issue-5035-pkdurlabhji
issue 5035 fix
2 parents c36f75c + 41e0490 commit 9858be2

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

__tests__/shared/components/__snapshots__/TopcoderFooter.jsx.snap

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ exports[`Matches shallow shapshot 1`] = `
106106
className="src-shared-components-TopcoderFooter-___style__link___3-nzm"
107107
>
108108
<a
109-
href="https://www.topcoder-dev.com/thrive/tracks?track=Data%20Science"
109+
href="https://www.topcoder-dev.com/thrive/tracks?track=Data%20Science&tax="
110110
>
111111
Data Science
112112
</a>
@@ -115,7 +115,7 @@ exports[`Matches shallow shapshot 1`] = `
115115
className="src-shared-components-TopcoderFooter-___style__link___3-nzm"
116116
>
117117
<a
118-
href="https://www.topcoder-dev.com/thrive/tracks?track=Design"
118+
href="https://www.topcoder-dev.com/thrive/tracks?track=Design&tax="
119119
>
120120
Design
121121
</a>
@@ -124,7 +124,7 @@ exports[`Matches shallow shapshot 1`] = `
124124
className="src-shared-components-TopcoderFooter-___style__link___3-nzm"
125125
>
126126
<a
127-
href="https://www.topcoder-dev.com/thrive/tracks?track=Development"
127+
href="https://www.topcoder-dev.com/thrive/tracks?track=Development&tax="
128128
>
129129
Development
130130
</a>
@@ -133,7 +133,7 @@ exports[`Matches shallow shapshot 1`] = `
133133
className="src-shared-components-TopcoderFooter-___style__link___3-nzm"
134134
>
135135
<a
136-
href="https://www.topcoder-dev.com/thrive/tracks?track=QA"
136+
href="https://www.topcoder-dev.com/thrive/tracks?track=QA&tax="
137137
>
138138
QA
139139
</a>

src/shared/components/TopcoderFooter/index.jsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ export default function TopcoderFooter() {
5454
<div styleName="sep-line" />
5555
<ul styleName="navi-col-links">
5656
<Link to={`${base}/thrive/tracks?track=Competitive%20Programming`}>Competitive Programming</Link>
57-
<Link to={`${base}/thrive/tracks?track=Data%20Science`}>Data Science</Link>
58-
<Link to={`${base}/thrive/tracks?track=Design`}>Design</Link>
59-
<Link to={`${base}/thrive/tracks?track=Development`}>Development</Link>
60-
<Link to={`${base}/thrive/tracks?track=QA`}>QA</Link>
57+
<Link to={`${base}/thrive/tracks?track=Data%20Science&tax=`}>Data Science</Link>
58+
<Link to={`${base}/thrive/tracks?track=Design&tax=`}>Design</Link>
59+
<Link to={`${base}/thrive/tracks?track=Development&tax=`}>Development</Link>
60+
<Link to={`${base}/thrive/tracks?track=QA&tax=`}>QA</Link>
6161
</ul>
6262
</div>
6363
<div styleName="navi-col">

0 commit comments

Comments
 (0)