Skip to content

Commit

Permalink
fix: use div to allow all kind of elements ad form section description
Browse files Browse the repository at this point in the history
  • Loading branch information
sapkra committed Nov 11, 2024
1 parent 3fdee47 commit 736a611
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fragments/form/FormSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export const FormSection: React.FC<FormSectionProps> = ({ children, title, descr
<div className={v.main()}>
<div className={v.info()}>
<h3>{title}</h3>
<p className={v.description()}>{description}</p>
<div className={v.description()}>{description}</div>
</div>
<div className={v.content()}>
{children}
Expand Down

0 comments on commit 736a611

Please sign in to comment.