I noticed that Buttons and Icon Buttons are triggering the onSubmit event in forms. After inspecting the DOM, I found that the Button elements are missing a type="button" attribute.
Adding type="button" resolves the issue. Could you update the package that all buttons have this attribute by default to prevent this behavior?
I noticed that Buttons and Icon Buttons are triggering the
onSubmit
event in forms. After inspecting the DOM, I found that the Button elements are missing atype="button"
attribute.Adding
type="button"
resolves the issue. Could you update the package that all buttons have this attribute by default to prevent this behavior?