Skip to content

Commit

Permalink
Merge pull request #205 from quriobot/use-text-deprecated-prop-types
Browse files Browse the repository at this point in the history
Use deprected prop types for text
  • Loading branch information
AugustoAleGon committed Aug 22, 2022
2 parents cc9ad6a + 54ea63d commit 681b155
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/react-native-multi-select.js
Expand Up @@ -8,7 +8,7 @@ import {
FlatList,
UIManager
} from 'react-native';
import {ViewPropTypes} from 'deprecated-react-native-prop-types';
import {ViewPropTypes, TextPropTypes} from 'deprecated-react-native-prop-types';
import PropTypes from 'prop-types';
import reject from 'lodash/reject';
import find from 'lodash/find';
Expand Down Expand Up @@ -62,9 +62,9 @@ export default class MultiSelect extends Component {
styleMainWrapper: ViewPropTypes.style,
styleRowList: ViewPropTypes.style,
styleSelectorContainer: ViewPropTypes.style,
styleTextDropdown: Text.propTypes.style,
styleTextDropdownSelected: Text.propTypes.style,
styleTextTag: Text.propTypes.style,
styleTextDropdown: TextPropTypes.style,
styleTextDropdownSelected: TextPropTypes.style,
styleTextTag: TextPropTypes.style,
styleIndicator: ViewPropTypes.style,
altFontFamily: PropTypes.string,
hideSubmitButton: PropTypes.bool,
Expand Down

0 comments on commit 681b155

Please sign in to comment.