We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9a52ed3 + 284fd1b commit 0ca398cCopy full SHA for 0ca398c
client/packages/lowcoder/src/redux/sagas/folderSagas.ts
@@ -118,17 +118,6 @@ export function* fetchFolderElementsSaga(action: ReduxAction<FetchFolderElements
118
type: ReduxActionTypes.FETCH_ALL_FOLDERS_SUCCESS,
119
payload: response.data.data.filter((m) => m.folder),
120
});
121
-
122
- // filter out applications with NORMAL status
123
124
- const applications = response.data.data.filter((item): item is ApplicationMeta =>
125
- !item.folder && item.applicationStatus === "NORMAL"
126
- );
127
128
- yield put({
129
- type: ReduxActionTypes.FETCH_ALL_APPLICATIONS_SUCCESS,
130
- payload: applications,
131
- });
132
}
133
134
yield put({
0 commit comments