refactor: layout roots (#2517)

This commit is contained in:
Aaryan Khandelwal 2023-10-23 15:06:28 +05:30 committed by GitHub
parent 05a76c5ee3
commit 38421e8106
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 205 additions and 269 deletions

View file

@ -65,6 +65,7 @@ export const ProjectAuthWrapper: FC<IProjectAuthWrapper> = observer((props) => {
? () => projectStore.fetchProjectStates(workspaceSlug.toString(), projectId.toString())
: null
);
// TODO: fetch project estimates
// fetching project cycles
useSWR(
workspaceSlug && projectId ? `PROJECT_ALL_CYCLES_${workspaceSlug}_${projectId}` : null,