Skip to content

Commit

Permalink
fix: Type improvements for Textarea
Browse files Browse the repository at this point in the history
  • Loading branch information
jherdman committed Jan 2, 2024
1 parent 87b3d67 commit 8c2508c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Textarea/Textarea.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ type TextareaProps = StyledTextareaProps & {
isResizeable?: boolean;
};

const Textarea: React.FC<TextareaProps> = forwardRef(
const Textarea = forwardRef<HTMLTextAreaElement, TextareaProps>(
(
{
errorMessage,
Expand Down

0 comments on commit 8c2508c

Please sign in to comment.