Skip to content

Commit 0926fe6

Browse files
committed
chore: remove useless font css
1 parent 7294dd4 commit 0926fe6

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

src/components/Form/BooleanField/BooleanFieldRadio.tsx

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -59,21 +59,13 @@ export const BooleanFieldRadio = ({
5959
<FieldGroup.Description description={description} />
6060
<FieldGroup.Row>
6161
<RadioGroup.Item id={`${name}-true`} value="true" />
62-
<Label
63-
aria-disabled={disabled || readOnly}
64-
className="text-muted-foreground font-normal"
65-
htmlFor={`${name}-true`}
66-
>
62+
<Label aria-disabled={disabled || readOnly} className="text-muted-foreground" htmlFor={`${name}-true`}>
6763
{options?.true ?? t('form.radioLabels.true')}
6864
</Label>
6965
</FieldGroup.Row>
7066
<FieldGroup.Row>
7167
<RadioGroup.Item id={`${name}-false`} value="false" />
72-
<Label
73-
aria-disabled={disabled || readOnly}
74-
className="text-muted-foreground font-normal"
75-
htmlFor={`${name}-false`}
76-
>
68+
<Label aria-disabled={disabled || readOnly} className="text-muted-foreground" htmlFor={`${name}-false`}>
7769
{options?.false ?? t('form.radioLabels.false')}
7870
</Label>
7971
</FieldGroup.Row>

0 commit comments

Comments
 (0)