diff --git a/web/components/radio.react.js b/web/components/radio.react.js --- a/web/components/radio.react.js +++ b/web/components/radio.react.js @@ -9,7 +9,9 @@ function Radio(props: Props): React.Node { const { checked } = props; - return <input className={css.radio} type="radio" checked={checked} />; + return ( + <input className={css.radio} type="radio" checked={checked} readOnly /> + ); } export default Radio;