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.
1 parent 32b3c3b commit bed5f55Copy full SHA for bed5f55
client/packages/lowcoder/src/pages/ApplicationV2/index.tsx
@@ -207,13 +207,6 @@ export default function ApplicationHome() {
207
user.currentOrgId && dispatch(fetchAllApplications({}));
208
}, [dispatch, allAppCount, user.currentOrgId]);
209
210
- useEffect(() => {
211
- if (allFoldersCount !== 0) {
212
- return;
213
- }
214
- user.currentOrgId && dispatch(fetchFolderElements({}));
215
- }, [dispatch, allFoldersCount, user.currentOrgId]);
216
-
217
if (fetchingUser || !isPreloadCompleted) {
218
return <ProductLoading />;
219
}
0 commit comments