Skip to content

Commit

Permalink
fix: List component radio remove extra margin (#3322)
Browse files Browse the repository at this point in the history
  • Loading branch information
ianjon3s authored Jun 26, 2024
1 parent 582e066 commit fb336c2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export const RadioFieldInput: React.FC<Props<QuestionField>> = (props) => {
<RadioGroup
aria-labelledby={`radio-buttons-group-label-${id}`}
name={`userData[${activeIndex}]['${data.fn}']`}
sx={{ p: 1 }}
sx={{ p: 1, mb: -2 }}
value={formik.values.userData[activeIndex][data.fn]}
>
{data.options.map(({ id, data }) => (
Expand Down

0 comments on commit fb336c2

Please sign in to comment.