Skip to content

Commit 0bb5c10

Browse files
authored
Merge pull request #4333 from yoution/issue-4281
fix: issue #4281
2 parents b9bfb71 + 3b4becd commit 0bb5c10

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

src/components/MobileMenu/MobileMenu.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ const MobileMenu = ({ user, onClose, menu }) => {
5252
</ul>
5353
))}
5454
</div>
55-
<div styleName="footer">Topcoder &copy; 2018</div>
55+
<div styleName="footer">Topcoder &copy; {new Date().getFullYear()}</div>
5656
</div>
5757
</MobilePage>
5858
)

src/components/TopBar/TopBarContainer.js

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -88,14 +88,8 @@ class TopBarContainer extends React.Component {
8888
{ label: 'Account and security', link: '/settings/account' },
8989
{ label: 'Notification settings', link: '/settings/notifications' },
9090
]
91-
}, {
92-
items: [
93-
{ label: 'About', link: 'https://www.topcoder.com/company/', absolute: true },
94-
{ label: 'Contact us', link: 'https://www.topcoder.com/contact-us/', absolute: true },
95-
{ label: 'Privacy', link: 'https://www.topcoder.com/privacy-policy/', absolute: true },
96-
{ label: 'Terms', link: 'https://connect.topcoder.com/terms', absolute: true },
97-
]
98-
}, {
91+
},
92+
{
9993
items: [
10094
{ label: 'Log Out', link: logoutLink, absolute: true, onClick: logoutClick },
10195
]

0 commit comments

Comments
 (0)