diff --git a/client/packages/lowcoder/src/redux/reducers/uiReducers/applicationReducer.ts b/client/packages/lowcoder/src/redux/reducers/uiReducers/applicationReducer.ts index 672502807..bf5369b86 100644 --- a/client/packages/lowcoder/src/redux/reducers/uiReducers/applicationReducer.ts +++ b/client/packages/lowcoder/src/redux/reducers/uiReducers/applicationReducer.ts @@ -129,7 +129,10 @@ const usersReducer = createReducer(initialState, { action: ReduxAction ): ApplicationReduxState => ({ ...state, - applicationList: [action.payload.applicationInfoView, ...state.applicationList], + // Might be unnecessary to add the new application to the list + // TODO: Remove this after testing + // applicationList: [action.payload.applicationInfoView, ...state.applicationList], + applicationList:[], loadingStatus: { ...state.loadingStatus, isApplicationCreating: false,