We're building an app where we search google places API to select a restaurant and store google_place_id and some of the data to our database.
-
We've set the UI up with using a dropdown select component.
-
user input to the dropdown is sent to API and retun is displayed as the dropdown options
-
PROBLEM -> not all items that API returns show on the dropdown, but only the one where string matches the search input.
This I believe is expected behaviour, but it breaks our entire flow as many search APIs return fuzzy matches that do not contain original search string.
Our workaround: Concat search string to the result of the API so that all options show. It works but is not as clean; so if there was an option to set dropdown select component to show all items that would be great

