Remove redirect when user only has access to one app
This commit is contained in:
parent
c4b7428aed
commit
bd6de7fe31
|
@ -28,12 +28,7 @@
|
||||||
onMount(async () => {
|
onMount(async () => {
|
||||||
await organisation.init()
|
await organisation.init()
|
||||||
await apps.load()
|
await apps.load()
|
||||||
// Skip the portal if you only have one app
|
|
||||||
if (!$auth.isBuilder && $apps.filter(publishedAppsOnly).length === 1) {
|
|
||||||
window.location = `/${publishedApps[0].prodId}`
|
|
||||||
} else {
|
|
||||||
loaded = true
|
loaded = true
|
||||||
}
|
|
||||||
})
|
})
|
||||||
|
|
||||||
const publishedAppsOnly = app => app.status === AppStatus.DEPLOYED
|
const publishedAppsOnly = app => app.status === AppStatus.DEPLOYED
|
||||||
|
|
Loading…
Reference in New Issue