diff --git a/packages/web/src/app/[domain]/components/errorNavIndicator.tsx b/packages/web/src/app/[domain]/components/errorNavIndicator.tsx index cf26ba56..a63a469d 100644 --- a/packages/web/src/app/[domain]/components/errorNavIndicator.tsx +++ b/packages/web/src/app/[domain]/components/errorNavIndicator.tsx @@ -95,6 +95,7 @@ export const ErrorNavIndicator = () => {
{repos .slice(0, 10) + .filter(item => item.linkedConnections.length > 0) // edge case: don't show repos that are orphaned and awaiting gc. .map(repo => ( // Link to the first connection for the repo captureEvent('wa_error_nav_job_pressed', {})}> diff --git a/packages/web/src/app/[domain]/components/progressNavIndicator.tsx b/packages/web/src/app/[domain]/components/progressNavIndicator.tsx index 3bb40d6a..7d79d7bc 100644 --- a/packages/web/src/app/[domain]/components/progressNavIndicator.tsx +++ b/packages/web/src/app/[domain]/components/progressNavIndicator.tsx @@ -48,17 +48,21 @@ export const ProgressNavIndicator = () => { The following repositories are currently being indexed:

- {inProgressRepos.slice(0, 10).map(item => ( - // Link to the first connection for the repo - captureEvent('wa_progress_nav_job_pressed', {})}> -
- {item.repoName} -
- - ))} + { + inProgressRepos.slice(0, 10) + .filter(item => item.linkedConnections.length > 0) // edge case: don't show repos that are orphaned and awaiting gc. + .map(item => ( + // Link to the first connection for the repo + captureEvent('wa_progress_nav_job_pressed', {})}> +
+ {item.repoName} +
+ + ) + )} {inProgressRepos.length > 10 && (
And {inProgressRepos.length - 10} more...