diff options
Diffstat (limited to 'server/sonar-web/src/main/js/queries/project-analyses.ts')
-rw-r--r-- | server/sonar-web/src/main/js/queries/project-analyses.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/queries/project-analyses.ts b/server/sonar-web/src/main/js/queries/project-analyses.ts index 1dadbe71e90..75615849dfc 100644 --- a/server/sonar-web/src/main/js/queries/project-analyses.ts +++ b/server/sonar-web/src/main/js/queries/project-analyses.ts @@ -19,6 +19,7 @@ */ import { useMutation, useQuery, useQueryClient } from '@tanstack/react-query'; +import { getBranchLikeQuery } from '~sonar-aligned/helpers/branch-like'; import { CreateEventResponse, ProjectActivityStatuses, @@ -34,7 +35,6 @@ import { } from '../app/components/componentContext/withComponentContext'; import { parseDate } from '../helpers/dates'; import { serializeStringArray } from '../helpers/query'; -import { getBranchLikeQuery } from '../sonar-aligned/helpers/branch-like'; import { BranchParameters } from '../types/branch-like'; import { ParsedAnalysis } from '../types/project-activity'; import { useBranchesQuery } from './branch'; |