Skip to content

Commit e025b64

Browse files
committed
[Fix]: #1905 create app issue
1 parent f4f6941 commit e025b64

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

client/packages/lowcoder/src/redux/reducers/uiReducers/applicationReducer.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,10 @@ const usersReducer = createReducer(initialState, {
129129
action: ReduxAction<ApplicationDetail>
130130
): ApplicationReduxState => ({
131131
...state,
132-
applicationList: [action.payload.applicationInfoView, ...state.applicationList],
132+
// Might be unnecessary to add the new application to the list
133+
// TODO: Remove this after testing
134+
// applicationList: [action.payload.applicationInfoView, ...state.applicationList],
135+
applicationList:[],
133136
loadingStatus: {
134137
...state.loadingStatus,
135138
isApplicationCreating: false,

0 commit comments

Comments
 (0)