Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
ggazzo authored Feb 23, 2023
1 parent 8e30891 commit 16bbbe9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const messageComposerInputStyle = css`
`;

const MessageComposerInput = forwardRef<HTMLInputElement, ComponentProps<typeof Box>>(
(props, ref): ReactElement => (
({ className, ...props }, ref): ReactElement => (
<Box is='label' width='full' fontSize={0}>
<Box
color='default'
Expand All @@ -27,7 +27,7 @@ const MessageComposerInput = forwardRef<HTMLInputElement, ComponentProps<typeof
{...props}
borderWidth={0}
is='textarea'
className={[messageComposerInputStyle]}
className={[messageComposerInputStyle, className]}
/>
</Box>
),
Expand Down

0 comments on commit 16bbbe9

Please sign in to comment.