This commit is contained in:
Martin McKeaveney 2021-11-09 18:14:37 +01:00
parent 4933d6e67d
commit f69d00e0ef
1 changed files with 3 additions and 3 deletions

View File

@ -30,11 +30,11 @@
if (user && user.tenantId) {
// no tenant in the url - send to account portal to fix this
if (!urlTenantId) {
let redirectUrl = $admin.accountPortalUrl
if (!window.location.host.includes("localhost")) {
const redirectUrl = redirectUrl.replace("://", `://${user.tenantId}.`)
let redirectUrl = window.location.href
redirectUrl = redirectUrl.replace("://", `://${user.tenantId}.`)
window.location.href = redirectUrl
}
window.location.href = redirectUrl
return
}