Skip to content

Commit 93b8ad2

Browse files
committed
fix(react/settings): settings displayed inline
1 parent 1d7799f commit 93b8ad2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/client/src/widgets/react/FormRadioGroup.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ interface FormRadioProps {
1414

1515
export default function FormRadioGroup({ values, ...restProps }: FormRadioProps) {
1616
return (
17-
<>
17+
<div role="group">
1818
{(values || []).map(({ value, label, inlineDescription }) => (
1919
<div className="form-checkbox">
2020
<FormRadio
@@ -25,7 +25,7 @@ export default function FormRadioGroup({ values, ...restProps }: FormRadioProps)
2525
/>
2626
</div>
2727
))}
28-
</>
28+
</div>
2929
);
3030
}
3131

0 commit comments

Comments
 (0)