Skip to content

Commit

Permalink
Test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AmirAgassi committed Nov 15, 2024
1 parent 2cbea7e commit 3c5d25a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/TextInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ const TextInput = forwardRef<HTMLInputElement, TextInputProps>(
{...props}
/>
{description && (
<Field.Description className="mt-1 text-sm text-gray-500">
<div className="mt-1 text-sm text-gray-500">
{description}
</Field.Description>
</div>
)}
{error && (
<Field.Error className="mt-1 text-sm text-red-500">
<div className="mt-1 text-sm text-red-500">
{error}
</Field.Error>
</div>
)}
</Field>
</div>
Expand Down

0 comments on commit 3c5d25a

Please sign in to comment.