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

Commit c0b4c69

Browse files
PROD-1583 #comment change url from /profile to /account #time 15m
1 parent 43cfb52 commit c0b4c69

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/App.jsx

Lines changed: 1 addition & 1 deletion
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/NavBar/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ const NavBar = ({ hideSwitchTools, profileUrl }) => {
164164

165165
NavBar.defaultProps = {
166166
hideSwitchTools: false,
167-
profileUrl: '/profile/',
167+
profileUrl: '/account/',
168168
};
169169

170170
NavBar.propTypes = {

src/components/UserMenu/index.jsx

Lines changed: 1 addition & 1 deletion
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+
Account
7373
</Link>
7474
</li>
7575
<li>

src/constants/apps.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ export const APP_CATEGORIES = [
8888
apps: [
8989
{
9090
title: "Profile App",
91-
path: "/profile/",
91+
path: "/account/",
9292
isExact: false,
9393
menu: [],
9494
},

0 commit comments

Comments
 (0)