File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
src/shared/routes/Communities/TCO21 Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -185,7 +185,7 @@ module.exports = {
185
185
ACCOUNT_MENU : [
186
186
{
187
187
title : 'Settings' ,
188
- href : 'https://topcoder.com /settings/profile' ,
188
+ href : '/settings/profile' ,
189
189
} ,
190
190
{ separator : true } ,
191
191
{
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ import ContentfulRoute from 'components/Contentful/Route';
10
10
import ContentfulMenu from 'components/Contentful/Menu' ;
11
11
import Profile from 'routes/Profile' ;
12
12
import ProfileStats from 'routes/ProfileStats' ;
13
+ import Settings from 'routes/Settings' ;
13
14
14
15
export default function TCO21 ( { base, meta } ) {
15
16
return (
@@ -35,6 +36,10 @@ export default function TCO21({ base, meta }) {
35
36
exact
36
37
path = { `${ base } /members/:handle([\\w\\-\\[\\].{}]{2,15})/details` }
37
38
/>
39
+ < Route
40
+ component = { ( ) => < Settings base = { `${ base } /settings` } /> }
41
+ path = { `${ base } /settings` }
42
+ />
38
43
< ContentfulRoute
39
44
baseUrl = { base }
40
45
error404 = { < Error404 /> }
You can’t perform that action at this time.
0 commit comments