diff --git a/CLAUDE.md b/CLAUDE.md index 339b044e..977c2a9e 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -108,6 +108,7 @@ Cursor does not load this file automatically. Keep `.cursor/rules/project-contex - Conventional commits: `feat:`, `fix:`, `chore:`, `docs:`. - Branch naming: `feat/description`, `fix/description`, `chore/description`, `docs/description`. - PRs should target `main`. Squash merge. +- **NEVER skip pre-commit hooks (`--no-verify`).** If the hook fails, fix the underlying issue. The hook exists to prevent broken code from reaching CI. ### Environment Variables diff --git a/apps/manager/src/features/coverage/coverage-report-client.tsx b/apps/manager/src/features/coverage/coverage-report-client.tsx index d379da87..924ebb57 100644 --- a/apps/manager/src/features/coverage/coverage-report-client.tsx +++ b/apps/manager/src/features/coverage/coverage-report-client.tsx @@ -488,7 +488,9 @@ function ModeToggle({ Explore {isOpen && ( -
+
{options.map((option) => (
{collections.length > 0 && ( -
+
Showing {totalCollections} {totalCollections !== collections.length ? ` of ${collections.length}` : ""}{" "} collection {collections.length === 1 ? "" : "s"} - {(filter !== "all" || typeFilter !== "all" || searchQuery.trim()) && ( + {(filter !== "all" || + typeFilter !== "all" || + searchQuery.trim()) && (