Skip to content

Commit f11956e

Browse files
committed
hotfix #5722
1 parent f16c99a commit f11956e

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

config/default.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ module.exports = {
102102
/* This is the same value as above, but it is used by topcoder-react-lib,
103103
* as a more verbose name for the param. */
104104
COMMUNITY_APP: 'https://community-app.topcoder-dev.com',
105-
CHALLENGES_URL: 'https://platform.topcoder.com/earn/find/challenges',
105+
CHALLENGES_URL: 'https://www.topcoder-dev.com/challenges',
106106

107107
ARENA: 'https://arena.topcoder-dev.com',
108108
AUTH: 'https://accounts-auth0.topcoder-dev.com',

config/production.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ module.exports = {
2525
/* This is the same value as above, but it is used by topcoder-react-lib,
2626
* as a more verbose name for the param. */
2727
COMMUNITY_APP: 'https://community-app.topcoder.com',
28+
CHALLENGES_URL: 'https://www.topcoder.com/challenges',
2829

2930
AUTH: 'https://accounts-auth0.topcoder.com',
3031
BASE: 'https://www.topcoder.com',

src/shared/components/Dashboard/GigsFeed/index.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export default function GigsFeed({
2020
<span styleName="title">GIGS</span>
2121
<a
2222
styleName="allLink"
23-
href={`${config.URL.COMMUNITY_APP}/gigs`}
23+
href={`${config.URL.BASE}/gigs`}
2424
target="_blank"
2525
rel="noreferrer"
2626
>View all <span>gigs</span>
@@ -31,7 +31,7 @@ export default function GigsFeed({
3131
: gigs.message ? <span>{gigs.message}</span> : gigs.map(gig => (
3232
<div styleName="row" key={`dashboard-gigs-feed-${gig.externalId}`}>
3333
<a
34-
href={`${config.URL.COMMUNITY_APP}/gigs/${gig.externalId}`}
34+
href={`${config.URL.BASE}/gigs/${gig.externalId}`}
3535
target="_blank"
3636
rel="noreferrer"
3737
>{gig.title}

0 commit comments

Comments
 (0)