diff --git a/Components/Sources/Components/Components/Editors/Common Views/Base/WKEditorToolbarButton.swift b/Components/Sources/Components/Components/Editors/Common Views/Base/WKEditorToolbarButton.swift index b9a9338814f..cf60cdc87e2 100644 --- a/Components/Sources/Components/Components/Editors/Common Views/Base/WKEditorToolbarButton.swift +++ b/Components/Sources/Components/Components/Editors/Common Views/Base/WKEditorToolbarButton.swift @@ -79,17 +79,6 @@ class WKEditorToolbarButton: WKComponentView { } } - var isEnabled: Bool { - get { - return button.isEnabled - } - set { - button.isEnabled = newValue - updateColors() - accessibilityTraits = newValue ? [.button, .selected] : [.button, .notEnabled] - } - } - func setImage(_ image: UIImage?, for state: UIControl.State) { button.setImage(image, for: state) }