@@ -33,7 +33,7 @@ export default function CS({ base, meta }) {
33
33
< Switch >
34
34
< Route
35
35
component = { ( ) => ChallengeListing ( {
36
- challengesUrl : `${ base } /challenges ` ,
36
+ challengesUrl : `${ base } /work ` ,
37
37
listingOnly : true ,
38
38
meta,
39
39
newChallengeDetails : true ,
@@ -44,7 +44,7 @@ export default function CS({ base, meta }) {
44
44
< Route
45
45
component = { routeProps => ChallengeDetails ( {
46
46
...routeProps ,
47
- challengesUrl : `${ base } /challenges ` ,
47
+ challengesUrl : `${ base } /work ` ,
48
48
communityId : meta . communityId ,
49
49
} ) }
50
50
exact
@@ -53,15 +53,15 @@ export default function CS({ base, meta }) {
53
53
< Route
54
54
component = { routeProps => Submission ( {
55
55
...routeProps ,
56
- challengesUrl : `${ base } /challenges ` ,
56
+ challengesUrl : `${ base } /work ` ,
57
57
} ) }
58
58
exact
59
59
path = { `${ base } /work/:challengeId(\\d{8}|\\d{5})/submit` }
60
60
/>
61
61
< Route
62
62
component = { routeProps => SubmissionManagement ( {
63
63
...routeProps ,
64
- challengesUrl : `${ base } /challenges ` ,
64
+ challengesUrl : `${ base } /work ` ,
65
65
} ) }
66
66
exact
67
67
path = { `${ base } /work/:challengeId(\\d{8}|\\d{5})/my-submissions` }
0 commit comments