Skip to content

Commit 6ec7ec3

Browse files
authored
Fixed tenant details infinite load loop (#2026)
1 parent 39d3690 commit 6ec7ec3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

portal-ui/src/screens/Console/Tenants/tenantsSlice.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1086,7 +1086,7 @@ export const tenantSlice = createSlice({
10861086
}>
10871087
) => {
10881088
state.tenantDetails.currentTenant = action.payload.name;
1089-
state.tenantDetails.currentTenant = action.payload.namespace;
1089+
state.tenantDetails.currentNamespace = action.payload.namespace;
10901090
},
10911091
setTenantInfo: (state, action: PayloadAction<ITenant | null>) => {
10921092
if (action.payload) {

0 commit comments

Comments
 (0)