0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-03-31 22:51:25 -05:00

fix(console): add origin for getUrl (#4210)

This commit is contained in:
Xiao Yijun 2023-07-24 11:39:55 +08:00 committed by GitHub
parent f8e11b1b34
commit b97b89a34b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -93,9 +93,7 @@ function useTenantPathname(): TenantPathname {
);
const getUrl = useCallback(
(pathname = '/') => {
return appendPath(new URL(href), tenantSegment, pathname);
},
(pathname = '/') => appendPath(new URL(window.location.origin), href, tenantSegment, pathname),
[href, tenantSegment]
);