Skip to content

Commit fb9d70b

Browse files
authored
Merge pull request #853 from Willham12/patch-1
fixed event object for onFocus method in textInputProps
2 parents 23334b1 + 909b5d2 commit fb9d70b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

GooglePlacesAutocomplete.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -820,7 +820,7 @@ export const GooglePlacesAutocomplete = forwardRef((props, ref) => {
820820
placeholder={props.placeholder}
821821
onFocus={
822822
onFocus
823-
? () => {
823+
? (e) => {
824824
_onFocus();
825825
onFocus(e);
826826
}

0 commit comments

Comments
 (0)