Skip to content

Commit

Permalink
Client: PortalSettings: fix header translate
Browse files Browse the repository at this point in the history
  • Loading branch information
vafomin committed Jan 13, 2025
1 parent 0120899 commit 54a83a3
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,9 @@ const SectionHeaderContent = (props) => {
const getArrayOfParams = () => {
const path = location.pathname;
const arrayPath = path.split("/");
const arrayOfParams = arrayPath.filter((item) => item !== "");
const arrayOfParams = arrayPath.filter(
(item) => item !== "" && !item.includes("portal-settings"),
);

return arrayOfParams;
};
Expand Down

0 comments on commit 54a83a3

Please sign in to comment.