Skip to content

Commit cc70f2b

Browse files
ci: apply automated fixes
1 parent f00d11f commit cc70f2b

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

packages/devtools-a11y/src/core/components/IssueList.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,10 @@ export function A11yIssueList(props: A11yIssueListProps) {
8181
{(impact) => {
8282
const count = () =>
8383
ally.allyResult.audit?.issues.reduce(
84-
(count, issue) => (
85-
issue.impact === impact && issue.meetsThreshold ? count + 1 : count),
84+
(count, issue) =>
85+
issue.impact === impact && issue.meetsThreshold
86+
? count + 1
87+
: count,
8688
0,
8789
) || 0
8890

0 commit comments

Comments
 (0)