We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a2a0d6 commit 760f045Copy full SHA for 760f045
packages/web/src/app/[domain]/components/progressNavIndicator.tsx
@@ -16,7 +16,7 @@ export const ProgressNavIndicator = () => {
16
const captureEvent = useCaptureEvent();
17
18
const { data: inProgressRepos, isPending, isError } = useQuery({
19
- queryKey: ['repos', domain],
+ queryKey: ['repos'],
20
queryFn: () => unwrapServiceError(getRepos()),
21
select: (data) => data.filter(repo => repo.repoIndexingStatus === RepoIndexingStatus.IN_INDEX_QUEUE || repo.repoIndexingStatus === RepoIndexingStatus.INDEXING),
22
refetchInterval: env.NEXT_PUBLIC_POLLING_INTERVAL_MS,
0 commit comments