We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcc96df commit 9060177Copy full SHA for 9060177
packages/react-select/src/Select.tsx
@@ -644,7 +644,7 @@ export default class Select<
644
inputIsHiddenAfterUpdate: undefined,
645
prevProps: undefined,
646
instancePrefix: '',
647
- isAppleDevice: false
+ isAppleDevice: false,
648
};
649
650
// Misc. Instance Properties
@@ -815,7 +815,7 @@ export default class Select<
815
) {
816
scrollIntoView(this.menuListRef, this.focusedOptionRef);
817
}
818
- if(isAppleDevice()) {
+ if (isAppleDevice()) {
819
// eslint-disable-next-line react/no-did-mount-set-state
820
this.setState({ isAppleDevice: true });
821
0 commit comments