Skip to content

Commit

Permalink
Same name for related Radio
Browse files Browse the repository at this point in the history
  • Loading branch information
srapilly committed Oct 26, 2023
1 parent 1452ab6 commit 63a952b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/ui/blocks/src/controls/options/Radio.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export const RadioControl: FC<RadioProps> = ({ name, options, value, onChange, i
<input
type="radio"
id={id}
name={id}
name={controlId}
value={key}
onChange={(e) => onChange(options[e.currentTarget.value])}
checked={key === selection}
Expand Down

0 comments on commit 63a952b

Please sign in to comment.