Skip to content

Commit

Permalink
fix: emailComposerInput change callback param
Browse files Browse the repository at this point in the history
  • Loading branch information
gnekoz committed Aug 3, 2022
1 parent e01abb9 commit d733ad8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/components/inputs/EmailComposerInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ interface EmailComposerInputProps extends HTMLAttributes<HTMLDivElement> {
/** Input's value */
value?: string;
/** Callback to call when Input's value changes */
onChange?: () => void;
onChange?: (ev: React.ChangeEvent<HTMLInputElement>) => void;
}

const EmailComposerInput = React.forwardRef<HTMLDivElement, EmailComposerInputProps>(
Expand Down

0 comments on commit d733ad8

Please sign in to comment.