Skip to content

Commit

Permalink
Merge pull request #2851 from irontec/PROVIDER-2036-impersonation-ext…
Browse files Browse the repository at this point in the history
…ra-slashes-in-url

Impersonation extra slashes in url
  • Loading branch information
cruzccl authored Jan 8, 2025
2 parents 6df494d + 862a64e commit 7c6126c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion web/portal/brand/src/components/Login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export default function Login(props: LoginProps): JSX.Element | null {
return;
}

navigate(`${location.pathname}/`, {
navigate(`${location.pathname}`, {
replace: true,
preventScrollReset: true,
});
Expand Down
2 changes: 1 addition & 1 deletion web/portal/client/src/components/Login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export default function Login(props: LoginProps): JSX.Element | null {
return;
}

navigate(`${location.pathname}/`, {
navigate(`${location.pathname}`, {
replace: true,
preventScrollReset: true,
});
Expand Down
2 changes: 1 addition & 1 deletion web/portal/user/src/components/Login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export default function Login(props: LoginProps): JSX.Element | null {
return;
}

navigate(`${location.pathname}/`, {
navigate(`${location.pathname}`, {
replace: true,
preventScrollReset: true,
});
Expand Down

0 comments on commit 7c6126c

Please sign in to comment.