From e025b6461dbf85831488f3ffd6390133ceb542f2 Mon Sep 17 00:00:00 2001 From: Faran Javed Date: Fri, 1 Aug 2025 17:08:17 +0500 Subject: [PATCH] [Fix]: #1905 create app issue --- .../src/redux/reducers/uiReducers/applicationReducer.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/client/packages/lowcoder/src/redux/reducers/uiReducers/applicationReducer.ts b/client/packages/lowcoder/src/redux/reducers/uiReducers/applicationReducer.ts index 6725028072..bf5369b869 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,