Skip to content

Commit b759b4e

Browse files
committed
fix lint
1 parent 094fe3d commit b759b4e

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/helpers/accessibility.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -313,8 +313,7 @@ function joinAccessibleNameParts(
313313
}
314314

315315
const previousPart = parts[index - 1];
316-
const separator =
317-
options.inline && previousPart.isInlineText && part.isInlineText ? '' : ' ';
316+
const separator = options.inline && previousPart.isInlineText && part.isInlineText ? '' : ' ';
318317
return `${accessibleName}${separator}${part.text}`;
319318
}, '');
320319
}

0 commit comments

Comments
 (0)