Skip to content

Commit

Permalink
fix: add missing proptypes
Browse files Browse the repository at this point in the history
  • Loading branch information
koko57 committed Nov 29, 2023
1 parent 49c4940 commit 3a3879c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/components/OptionsSelector/BaseOptionsSelector.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ import Text from '@components/Text';
import TextInput from '@components/TextInput';
import withLocalize, {withLocalizePropTypes} from '@components/withLocalize';
import withNavigationFocus from '@components/withNavigationFocus';
import withTheme from '@components/withTheme';
import withThemeStyles from '@components/withThemeStyles';
import withTheme, {withThemePropTypes} from '@components/withTheme';
import withThemeStyles, {withThemeStylesPropTypes} from '@components/withThemeStyles';
import compose from '@libs/compose';
import getPlatform from '@libs/getPlatform';
import KeyboardShortcut from '@libs/KeyboardShortcut';
Expand Down Expand Up @@ -51,6 +51,8 @@ const propTypes = {

...optionsSelectorPropTypes,
...withLocalizePropTypes,
...withThemeStylesPropTypes,
...withThemePropTypes,
};

const defaultProps = {
Expand Down

0 comments on commit 3a3879c

Please sign in to comment.