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 83a4b94 commit 3e7f4abCopy full SHA for 3e7f4ab
src/index.js
@@ -222,8 +222,8 @@ export const AutocompleteDropdown = memo(
222
Keyboard.dismiss()
223
224
if (typeof props.onChevronPress === 'function') {
225
- props.onChevronPress();
226
- }
+ props.onChevronPress()
+ }
227
}, [isOpened, props.onChevronPress])
228
229
const onFocus = useCallback(
@@ -273,7 +273,7 @@ export const AutocompleteDropdown = memo(
273
onLayout={_ => {}}
274
style={[styles.inputContainerStyle, props.inputContainerStyle]}>
275
<InputComponent
276
- ref={inputRef}
+ ref={inputRef}
277
value={searchText}
278
onChangeText={onChangeText}
279
autoCorrect={false}
0 commit comments