Skip to content

Commit 0ca398c

Browse files
Merge pull request #1924 from iamfaran/fix/1905-apps-list
[Fix]: #1905 apps fetch
2 parents 9a52ed3 + 284fd1b commit 0ca398c

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

client/packages/lowcoder/src/redux/sagas/folderSagas.ts

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -118,17 +118,6 @@ export function* fetchFolderElementsSaga(action: ReduxAction<FetchFolderElements
118118
type: ReduxActionTypes.FETCH_ALL_FOLDERS_SUCCESS,
119119
payload: response.data.data.filter((m) => m.folder),
120120
});
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-
});
132121
}
133122

134123
yield put({

0 commit comments

Comments
 (0)