Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 47aeb5c

Browse files
authored
Merge pull request #105 from topcoder-platform/PROD-1558_account-redo
PROD-1558 account settings redo -> dev
2 parents b26594e + 1ae106d commit 47aeb5c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/App.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const App = () => {
6060
noThrow
6161
profileUrl={
6262
location.pathname.includes("/self-service")
63-
? "/self-service/profile/"
63+
? "/self-service/account/"
6464
: `/profile/${_.get(auth, "profile.handle", "")}`
6565
}
6666
hideSwitchTools={isNavigationDisabled}

src/components/UserMenu/index.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ const UserMenu = ({ profile, profileUrl }) => {
6969
to={`${profileUrl}`}
7070
onClick={closeMenu}
7171
>
72-
Profile
72+
{profileUrl.startsWith('/self-service') ? 'Account' : 'Profile'}
7373
</Link>
7474
</li>
7575
<li>

0 commit comments

Comments
 (0)