Skip to content

Commit

Permalink
chore: rm needless <div>
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Nov 21, 2024
1 parent a7662f4 commit d8e693b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/js/components/Beacon/BeaconCommon/VariantInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ import type { FormField } from '@/types/beacon';
const VariantInput = ({ field, disabled }: VariantInputProps) => {
const t = useTranslationFn();
return (
<div>
<>
<Form.Item name={field.name} label={t(field.name)} rules={field.rules}>
<Input placeholder={field.placeholder} disabled={disabled} />
</Form.Item>
</div>
</>
);
};

Expand Down

0 comments on commit d8e693b

Please sign in to comment.