Skip to content

Commit

Permalink
Fixes issue FaridSafi#944
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel Hoogervorst authored and Gabriel Hoogervorst committed Oct 23, 2024
1 parent 313ccf8 commit 8ab6ccf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GooglePlacesAutocomplete.js
Original file line number Diff line number Diff line change
Expand Up @@ -882,7 +882,7 @@ export const GooglePlacesAutocomplete = forwardRef((props, ref) => {
ListEmptyComponent={
listLoaderDisplayed
? props.listLoaderComponent
: stateText.length > props.minLength && props.listEmptyComponent
: stateText?.length > props.minLength && props.listEmptyComponent
}
ListHeaderComponent={
props.renderHeaderComponent &&
Expand Down

0 comments on commit 8ab6ccf

Please sign in to comment.