I'm seeing the following error when using radio buttons with version 3.113.4 of react-core.

Here' is the code in integr8tly causing the issue:
<React.Fragment>
<Radio
id={${blockId}verificationYes}
name={${blockId}Yes}
checked={isYesChecked}
className="integr8ly-task-radio-btn"
isChecked={isYesChecked}
onChange={e => {
this.handleVerificationInput(e, blockId, true);
}}
label="Yes"
>
Yes
/>
<Radio
id={${blockId}verificationNo}
name={${blockId}No}
checked={isNoChecked}
className="integr8ly-task-radio-btn"
isChecked={isNoChecked}
onChange={e => {
this.handleVerificationInput(e, blockId, false);
}}
label="No"
>
No
/>
...
Reactions are currently unavailable
I'm seeing the following error when using radio buttons with version 3.113.4 of react-core.
Here' is the code in integr8tly causing the issue:
<React.Fragment>
<Radio
id={${blockId}verificationYes}
name={${blockId}Yes}
checked={isYesChecked}
className="integr8ly-task-radio-btn"
isChecked={isYesChecked}
onChange={e => {
this.handleVerificationInput(e, blockId, true);
}}
label="Yes"
>
Yes
/>
<Radio
id={${blockId}verificationNo}
name={${blockId}No}
checked={isNoChecked}
className="integr8ly-task-radio-btn"
isChecked={isNoChecked}
onChange={e => {
this.handleVerificationInput(e, blockId, false);
}}
label="No"
>
No
/>
...