Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@
return adjustListIfUpDir({
treePaths,
displayType: selectedDisplayType,
rawTableRows: rawTableRows as Row[],
rawTableRows: rawTableRows.filter((row): row is Row => row !== null),

Check failure on line 185 in src/pages/RepoPage/CoverageTab/OverviewTab/subroute/FileExplorer/hooks/useRepoBranchContentsTable.tsx

View workflow job for this annotation

GitHub Actions / Upload Bundle Stats - Helmtest

A type predicate's type must be assignable to its parameter's type.

Check failure on line 185 in src/pages/RepoPage/CoverageTab/OverviewTab/subroute/FileExplorer/hooks/useRepoBranchContentsTable.tsx

View workflow job for this annotation

GitHub Actions / Upload Bundle Stats - Helmtest

Type '({ name: Element | undefined; lines: string; hits: string; partials: string; misses: string; coverage: Element; } | null)[]' is not assignable to type 'Row[]'.

Check failure on line 185 in src/pages/RepoPage/CoverageTab/OverviewTab/subroute/FileExplorer/hooks/useRepoBranchContentsTable.tsx

View workflow job for this annotation

GitHub Actions / Run Type Checker

A type predicate's type must be assignable to its parameter's type.

Check failure on line 185 in src/pages/RepoPage/CoverageTab/OverviewTab/subroute/FileExplorer/hooks/useRepoBranchContentsTable.tsx

View workflow job for this annotation

GitHub Actions / Run Type Checker

Type '({ name: Element | undefined; lines: string; hits: string; partials: string; misses: string; coverage: Element; } | null)[]' is not assignable to type 'Row[]'.

Check failure on line 185 in src/pages/RepoPage/CoverageTab/OverviewTab/subroute/FileExplorer/hooks/useRepoBranchContentsTable.tsx

View workflow job for this annotation

GitHub Actions / Upload Bundle Stats - Production

A type predicate's type must be assignable to its parameter's type.

Check failure on line 185 in src/pages/RepoPage/CoverageTab/OverviewTab/subroute/FileExplorer/hooks/useRepoBranchContentsTable.tsx

View workflow job for this annotation

GitHub Actions / Upload Bundle Stats - Production

Type '({ name: Element | undefined; lines: string; hits: string; partials: string; misses: string; coverage: Element; } | null)[]' is not assignable to type 'Row[]'.

Check failure on line 185 in src/pages/RepoPage/CoverageTab/OverviewTab/subroute/FileExplorer/hooks/useRepoBranchContentsTable.tsx

View workflow job for this annotation

GitHub Actions / Upload Bundle Stats - Staging

A type predicate's type must be assignable to its parameter's type.

Check failure on line 185 in src/pages/RepoPage/CoverageTab/OverviewTab/subroute/FileExplorer/hooks/useRepoBranchContentsTable.tsx

View workflow job for this annotation

GitHub Actions / Upload Bundle Stats - Staging

Type '({ name: Element | undefined; lines: string; hits: string; partials: string; misses: string; coverage: Element; } | null)[]' is not assignable to type 'Row[]'.

Check failure on line 185 in src/pages/RepoPage/CoverageTab/OverviewTab/subroute/FileExplorer/hooks/useRepoBranchContentsTable.tsx

View workflow job for this annotation

GitHub Actions / Build App

A type predicate's type must be assignable to its parameter's type.

Check failure on line 185 in src/pages/RepoPage/CoverageTab/OverviewTab/subroute/FileExplorer/hooks/useRepoBranchContentsTable.tsx

View workflow job for this annotation

GitHub Actions / Build App

Type '({ name: Element | undefined; lines: string; hits: string; partials: string; misses: string; coverage: Element; } | null)[]' is not assignable to type 'Row[]'.
})
}, [branchData?.pages, branch, treePaths, urlPath, selectedDisplayType])

Expand Down
Loading