Skip to content
This repository has been archived by the owner on Mar 23, 2024. It is now read-only.

Commit

Permalink
fix: profile nav button path
Browse files Browse the repository at this point in the history
  • Loading branch information
pupixipup committed Feb 16, 2024
1 parent f5586dd commit e146c36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/widgets/sidebar/config/getSidebarItems.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const getSidebarItems = (user?: IUserProtectedResponse) => {
if (user) {
data.push({
title: 'Profile',
path: `${user?.username}/${PROFILE}`,
path: `/${user?.username}${PROFILE}`,
icon: <UserIcon />,
});
}
Expand Down

0 comments on commit e146c36

Please sign in to comment.