diff --git a/components/lib/radiobutton/RadioButton.js b/components/lib/radiobutton/RadioButton.js index 9e821d9976..37ecb5304d 100644 --- a/components/lib/radiobutton/RadioButton.js +++ b/components/lib/radiobutton/RadioButton.js @@ -30,6 +30,7 @@ export const RadioButton = React.memo(React.forwardRef((props, ref) => { inputRef.current.checked = !props.checked; DomHandler.focus(inputRef.current); + e.preventDefault(); } }