byteburgers / react-native-autocomplete-input

Pure javascript autocomplete input for react-native
https://byteburgers.com/autocomplete
MIT License
818 stars 255 forks source link

keyboardShouldPersistTaps typo #204

Closed michaeledrian closed 3 years ago

michaeledrian commented 3 years ago

Dear developer there is typo on index.js file on the keyboardShouldPersistTaps : PropTypes.oneOf(['always', 'handeld', 'never']),

You need to change it into: PropTypes.oneOf(['always', 'handled', 'never']),

mrlaessig commented 3 years ago

Thx for pointing out! Type has been fixed in the lates release.

michaeledrian commented 3 years ago

Your welcome boss!