Similar to #33, with iOS 18.x the content of ScrollViews isn't detected correctly. Or am I missing something? ``` @Test func scrollView_a11y() { let view = ScrollView { ForEach(0..<10, id: \.self) { _ in Text("Hello World") } } assertSnapshot( of: view, as: .accessibilityImage( size: CGSize(width: 375, height: 500), shouldRunInHostApplication: false ) ) } ``` 
Similar to #33, with iOS 18.x the content of ScrollViews isn't detected correctly. Or am I missing something?