mirror of
https://github.com/logto-io/logto.git
synced 2025-03-31 22:51:25 -05:00
fix(console): getPathname() could result in duplicated tenant id segments in path (#4362)
This commit is contained in:
parent
d5ffb03bec
commit
b581b28081
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ function useTenantPathname(): TenantPathname {
|
|||
/** Returns the pathname with the current tenant ID prepended. */
|
||||
const getPathname = useCallback(
|
||||
(pathname: string) => {
|
||||
if (pathname.startsWith('/')) {
|
||||
if (pathname.startsWith('/') && !pathname.startsWith(`/${tenantSegment}`)) {
|
||||
return joinPath(tenantSegment, pathname);
|
||||
}
|
||||
// Directly return the pathname if it's a relative pathname
|
||||
|
|
Loading…
Add table
Reference in a new issue