Skip to content

Commit

Permalink
fix(textField): delete unused onChange prop on MultiTextField
Browse files Browse the repository at this point in the history
  • Loading branch information
Jiyeon-lunit committed Nov 14, 2023
1 parent 9327b2e commit 1a9aaa2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const SingleTextField = forwardRef<HTMLDivElement, SingleTextFieldProps>(
);

const MultiTextField = forwardRef<HTMLDivElement, MultiTextFieldProps>(
({ size = "small", onChange, ...restProps }, ref) => {
({ size = "small", ...restProps }, ref) => {
return (
<BaseTextField {...restProps} ref={ref} textFieldSize={size} multiline />
);
Expand Down

0 comments on commit 1a9aaa2

Please sign in to comment.