diff --git a/src/components/Contacts/ContactDetails/ContactDetailsTab/Mailing/StreetAutocomplete/StreetAutocomplete.tsx b/src/components/Contacts/ContactDetails/ContactDetailsTab/Mailing/StreetAutocomplete/StreetAutocomplete.tsx index 3a2331598..fed92138f 100644 --- a/src/components/Contacts/ContactDetails/ContactDetailsTab/Mailing/StreetAutocomplete/StreetAutocomplete.tsx +++ b/src/components/Contacts/ContactDetails/ContactDetailsTab/Mailing/StreetAutocomplete/StreetAutocomplete.tsx @@ -169,6 +169,9 @@ export const StreetAutocomplete: React.FC = ({ typeof option === 'string' ? option : option.description } options={predictions} + // Disable filtering addresses by the input and rely on the Google Maps API to provide + // relevant address predictions + filterOptions={(options) => options} value={streetValue} onChange={(_event, newValue) => { if (typeof newValue === 'string') {