noticed that when I use PHPickerViewController in iOS26, preselectedAssetIdentifiers not working. It doesn't pre-select an image.
This is the code snapshot how I use it with UIViewControllerRepresentable
Same code works in iOS18 but not iOS26
func makeUIViewController(context: Context) -> UIViewController {
var configuration = PHPickerConfiguration(photoLibrary: PHPhotoLibrary.shared())
configuration.filter = .images
configuration.selectionLimit = 5
configuration.preselectedAssetIdentifiers = ["some id from previous selected results"]
let imagePicker = PHPickerViewController.init(configuration: configuration)
imagePicker.delegate = context.coordinator
return imagePicker
}