Skip to content

Commit 3344a08

Browse files
committed
prettier fix for line length
1 parent 6edff68 commit 3344a08

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/react-select/src/Select.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1738,7 +1738,9 @@ export default class Select<
17381738
'aria-describedby': this.getElementId('live-region'),
17391739
}
17401740
: {
1741-
'aria-describedby': this.props['aria-describedby'] || this.getElementId('placeholder'),
1741+
'aria-describedby':
1742+
this.props['aria-describedby'] ||
1743+
this.getElementId('placeholder'),
17421744
}),
17431745
};
17441746

0 commit comments

Comments
 (0)