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 6f9b821 commit 326d27eCopy full SHA for 326d27e
client/packages/lowcoder/src/pages/ApplicationV2/index.tsx
@@ -207,6 +207,13 @@ 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