Skip to content

Commit

Permalink
fix(client): update link to GitLab user profile
Browse files Browse the repository at this point in the history
fix #1820
  • Loading branch information
lorenzo-cavazzi committed May 5, 2022
1 parent e1b1997 commit 0204994
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/landing/NavBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ function gitLabSettingsUrlFromProfileUrl(webUrl) {
// Yes, the settings URL ends with 'profile'; the profile URL ends with the username
const comps = webUrl.split("/");
comps.pop();
comps.push("profile");
comps.push("-/profile");
return comps.join("/");
}

Expand Down

0 comments on commit 0204994

Please sign in to comment.