Review feedback - shortcut user?.tenantId !== tenantId
This commit is contained in:
parent
0dfae96e52
commit
8de6cd3585
|
@ -17,7 +17,7 @@
|
||||||
|
|
||||||
if (!tenantId.includes("localhost:")) {
|
if (!tenantId.includes("localhost:")) {
|
||||||
// user doesn't have permission to access this tenant - kick them out
|
// user doesn't have permission to access this tenant - kick them out
|
||||||
if (user && user.tenantId && user.tenantId !== tenantId) {
|
if (user?.tenantId !== tenantId) {
|
||||||
await auth.logout()
|
await auth.logout()
|
||||||
await auth.setOrganisation(null)
|
await auth.setOrganisation(null)
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue