From 6ec7ec3c2548fb9eec51a34403eba5a6b19744c4 Mon Sep 17 00:00:00 2001 From: Alex <33497058+bexsoft@users.noreply.github.com> Date: Sat, 21 May 2022 00:19:03 -0500 Subject: [PATCH] Fixed tenant details infinite load loop (#2026) --- portal-ui/src/screens/Console/Tenants/tenantsSlice.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/portal-ui/src/screens/Console/Tenants/tenantsSlice.ts b/portal-ui/src/screens/Console/Tenants/tenantsSlice.ts index 8379c78b9..0bd948e51 100644 --- a/portal-ui/src/screens/Console/Tenants/tenantsSlice.ts +++ b/portal-ui/src/screens/Console/Tenants/tenantsSlice.ts @@ -1086,7 +1086,7 @@ export const tenantSlice = createSlice({ }> ) => { state.tenantDetails.currentTenant = action.payload.name; - state.tenantDetails.currentTenant = action.payload.namespace; + state.tenantDetails.currentNamespace = action.payload.namespace; }, setTenantInfo: (state, action: PayloadAction) => { if (action.payload) {