Browse Source

fix(ui): Do not read initiallyLoaded from project store (#33222)

Scott Cooper 2 years ago
parent
commit
472281ce59
1 changed files with 1 additions and 1 deletions
  1. 1 1
      static/app/utils/useProjects.tsx

+ 1 - 1
static/app/utils/useProjects.tsx

@@ -207,7 +207,7 @@ function useProjects({limit, slugs, orgId: propOrgId}: Options = {}) {
         ...state,
         hasMore,
         fetching: false,
-        initiallyLoaded: !store.loading,
+        initiallyLoaded: true,
         nextCursor,
       });
     } catch (err) {