Skip to content

Commit 55cf571

Browse files
committed
Move to /home and some bug fixes
1 parent a307ecb commit 55cf571

File tree

16 files changed

+5293
-5285
lines changed

16 files changed

+5293
-5285
lines changed

__tests__/shared/components/Header/__snapshots__/index.jsx.snap

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ exports[`Default render 1`] = `
2525
"id": "community",
2626
"secondaryMenu": Array [
2727
Object {
28-
"href": "/dashboard",
29-
"id": "dashboard",
28+
"href": "/home",
29+
"id": "home",
3030
"logged": true,
31-
"title": "Dashboard",
31+
"title": "Home",
3232
},
3333
Object {
3434
"href": "/members/willFilledByUserName",

__tests__/shared/components/__snapshots__/Content.jsx.snap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,9 +235,9 @@ exports[`Matches shallow shapshot 1`] = `
235235
<li>
236236
<Link
237237
replace={false}
238-
to="/dashboard"
238+
to="/home"
239239
>
240-
Dashboard
240+
Home
241241
</Link>
242242
</li>
243243
<li>

config/default.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ module.exports = {
107107
ARENA: 'https://arena.topcoder-dev.com',
108108
AUTH: 'https://accounts-auth0.topcoder-dev.com',
109109
BASE: 'https://www.topcoder-dev.com',
110-
HOME: '/dashboard',
110+
HOME: '/home',
111111
BLOG: 'https://www.topcoder-dev.com/blog',
112112
BLOG_FEED: 'https://www.topcoder.com/blog/feed/',
113113
COMMUNITY: 'https://community.topcoder-dev.com',
@@ -299,9 +299,9 @@ module.exports = {
299299
title: 'COMMUNITY',
300300
secondaryMenu: [
301301
{
302-
id: 'dashboard',
303-
title: 'Dashboard',
304-
href: '/dashboard',
302+
id: 'home',
303+
title: 'Home',
304+
href: '/home',
305305
logged: true,
306306
},
307307
{

config/production.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ module.exports = {
2828

2929
AUTH: 'https://accounts-auth0.topcoder.com',
3030
BASE: 'https://www.topcoder.com',
31-
HOME: '/dashboard',
31+
HOME: '/home',
3232
COMMUNITY: 'https://community.topcoder.com',
3333
FORUMS: 'https://apps.topcoder.com/forums',
3434
FORUMS_VANILLA: 'https://discussions.topcoder.com',
@@ -79,9 +79,9 @@ module.exports = {
7979
title: 'COMMUNITY',
8080
secondaryMenu: [
8181
{
82-
id: 'dashboard',
83-
title: 'Dashboard',
84-
href: '/dashboard',
82+
id: 'home',
83+
title: 'Home',
84+
href: '/home',
8585
logged: true,
8686
},
8787
{

0 commit comments

Comments
 (0)