Variable AccessibilityLabelModifierRemoverConst

AccessibilityLabelModifierRemover: MutationOperator = ...

This operator matches a SwiftUI view with an .accessibilityLabel modifier, which is used to provide a text alternative for screen reader users. The operator creates mutations that remove the label.

Before:

Image(...)
.accessibilityLabel("Pineapple")

After:

Image(...)

Applicable WCAG Success Criteria: