0
Fork 0
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:
Darcy Ye 2023-08-17 16:18:33 +08:00 committed by GitHub
parent d5ffb03bec
commit b581b28081
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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