You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Disabled calls onPress on fireEvent.press when rendered with a wrapper, but does not rendered without a wrapper.
Expected behavior
Steps to Reproduce
render(<Button {...props} disabled={true} />) does not call onPress on fireEvent.press, but render(<Button {...props} disabled={true} />, { wrapper: ({ children }) => <>{children}</> }) calls onPress on fireEvent.press