diff --git a/client/packages/lowcoder/src/redux/sagas/folderSagas.ts b/client/packages/lowcoder/src/redux/sagas/folderSagas.ts index 9db0a1eee..da608bab6 100644 --- a/client/packages/lowcoder/src/redux/sagas/folderSagas.ts +++ b/client/packages/lowcoder/src/redux/sagas/folderSagas.ts @@ -118,17 +118,6 @@ export function* fetchFolderElementsSaga(action: ReduxAction m.folder), }); - - // filter out applications with NORMAL status - - const applications = response.data.data.filter((item): item is ApplicationMeta => - !item.folder && item.applicationStatus === "NORMAL" - ); - - yield put({ - type: ReduxActionTypes.FETCH_ALL_APPLICATIONS_SUCCESS, - payload: applications, - }); } yield put({