After updating my app with the iOS 26, the Google Place picker autocomplete robotically added a empty circle within the left aspect:

How I can take away or add a picture as a substitute of that vacant with circle that does nothing?
Once more, this occurs solely in iOS 26.
The code:
struct PlacePicker: UIViewControllerRepresentable {
func makeCoordinator() -> GooglePlacesCoordinator {
GooglePlacesCoordinator(self)
}
@Setting(.presentationMode) var presentationMode
@Binding var tackle: String
@Binding var latitude: Double
@Binding var longitude: Double
func makeUIViewController(context: UIViewControllerRepresentableContext<PlacePicker>) -> GMSAutocompleteViewController
GMSPlaceField.formattedAddress.rawValue)
autocompleteController.placeFields = fields
let filter = GMSAutocompleteFilter()
filter.sort = .noFilter
autocompleteController.autocompleteFilter = filter
return autocompleteController

