Skip to content

issue 5035 fix #5115

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 15, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ exports[`Matches shallow shapshot 1`] = `
className="src-shared-components-TopcoderFooter-___style__link___3-nzm"
>
<a
href="https://www.topcoder-dev.com/thrive/tracks?track=Data%20Science"
href="https://www.topcoder-dev.com/thrive/tracks?track=Data%20Science&tax="
>
Data Science
</a>
Expand All @@ -115,7 +115,7 @@ exports[`Matches shallow shapshot 1`] = `
className="src-shared-components-TopcoderFooter-___style__link___3-nzm"
>
<a
href="https://www.topcoder-dev.com/thrive/tracks?track=Design"
href="https://www.topcoder-dev.com/thrive/tracks?track=Design&tax="
>
Design
</a>
Expand All @@ -124,7 +124,7 @@ exports[`Matches shallow shapshot 1`] = `
className="src-shared-components-TopcoderFooter-___style__link___3-nzm"
>
<a
href="https://www.topcoder-dev.com/thrive/tracks?track=Development"
href="https://www.topcoder-dev.com/thrive/tracks?track=Development&tax="
>
Development
</a>
Expand All @@ -133,7 +133,7 @@ exports[`Matches shallow shapshot 1`] = `
className="src-shared-components-TopcoderFooter-___style__link___3-nzm"
>
<a
href="https://www.topcoder-dev.com/thrive/tracks?track=QA"
href="https://www.topcoder-dev.com/thrive/tracks?track=QA&tax="
>
QA
</a>
Expand Down
8 changes: 4 additions & 4 deletions src/shared/components/TopcoderFooter/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ export default function TopcoderFooter() {
<div styleName="sep-line" />
<ul styleName="navi-col-links">
<Link to={`${base}/thrive/tracks?track=Competitive%20Programming`}>Competitive Programming</Link>
<Link to={`${base}/thrive/tracks?track=Data%20Science`}>Data Science</Link>
<Link to={`${base}/thrive/tracks?track=Design`}>Design</Link>
<Link to={`${base}/thrive/tracks?track=Development`}>Development</Link>
<Link to={`${base}/thrive/tracks?track=QA`}>QA</Link>
<Link to={`${base}/thrive/tracks?track=Data%20Science&tax=`}>Data Science</Link>
<Link to={`${base}/thrive/tracks?track=Design&tax=`}>Design</Link>
<Link to={`${base}/thrive/tracks?track=Development&tax=`}>Development</Link>
<Link to={`${base}/thrive/tracks?track=QA&tax=`}>QA</Link>
</ul>
</div>
<div styleName="navi-col">
Expand Down