Skip to content

Commit

Permalink
feat: jsdoc (#287)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fran McDade authored and Fran McDade committed Dec 4, 2024
1 parent fff7bb9 commit 7e2f4ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/fileManifestState/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export function areAllFormFiltersSelected(state: FileManifestState): boolean {
if (selectedFormFacetNames.has(categoryKey)) {
const facet = findFacet(filesFacets, categoryKey);
if (!facet) continue;
if (value.length < facet.termCount) return false;
if (value.length < facet.termCount) return false; // Return false if the facet has unselected terms.
}
}
return true;
Expand Down

0 comments on commit 7e2f4ce

Please sign in to comment.