Skip to content

Commit c39188d

Browse files
committed
Fixed broken challenge details links
1 parent 66b133d commit c39188d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/shared/routes/Communities/Comcast/Routes.jsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export default function CS({ base, meta }) {
3333
<Switch>
3434
<Route
3535
component={() => ChallengeListing({
36-
challengesUrl: `${base}/challenges`,
36+
challengesUrl: `${base}/work`,
3737
listingOnly: true,
3838
meta,
3939
newChallengeDetails: true,
@@ -44,7 +44,7 @@ export default function CS({ base, meta }) {
4444
<Route
4545
component={routeProps => ChallengeDetails({
4646
...routeProps,
47-
challengesUrl: `${base}/challenges`,
47+
challengesUrl: `${base}/work`,
4848
communityId: meta.communityId,
4949
})}
5050
exact
@@ -53,15 +53,15 @@ export default function CS({ base, meta }) {
5353
<Route
5454
component={routeProps => Submission({
5555
...routeProps,
56-
challengesUrl: `${base}/challenges`,
56+
challengesUrl: `${base}/work`,
5757
})}
5858
exact
5959
path={`${base}/work/:challengeId(\\d{8}|\\d{5})/submit`}
6060
/>
6161
<Route
6262
component={routeProps => SubmissionManagement({
6363
...routeProps,
64-
challengesUrl: `${base}/challenges`,
64+
challengesUrl: `${base}/work`,
6565
})}
6666
exact
6767
path={`${base}/work/:challengeId(\\d{8}|\\d{5})/my-submissions`}

0 commit comments

Comments
 (0)