Remove aria-pressed attr from button. Closes
#6325 (
#6402)
1 files changed, 0 insertions, 1 deletions
diff --git a/src/components/Button.tsx b/src/components/Button.tsx
index aaac73bd3..3329dca05 100644
--- a/src/components/Button.tsx
+++ b/src/components/Button.tsx
@@ -458,7 +458,6 @@ export const Button = React.forwardRef<View, ButtonProps>(
// @ts-ignore - this will always be a pressable
ref={ref}
aria-label={label}
- aria-pressed={state.pressed}
accessibilityLabel={label}
disabled={disabled || false}
accessibilityState={{
|