diff --git a/client/src/components/atoms/Form/Input.tsx b/client/src/components/atoms/Form/Input.tsx index d6e5433..9f5db49 100644 --- a/client/src/components/atoms/Form/Input.tsx +++ b/client/src/components/atoms/Form/Input.tsx @@ -79,8 +79,7 @@ export default class Input extends PureComponent { name, required, onChange, - value, - rows + value } = this.props const wrapClass = this.inputWrapClasses() @@ -119,7 +118,7 @@ export default class Input extends PureComponent { className={styles.input} onFocus={this.toggleFocus} onBlur={this.toggleFocus} - rows={rows} + {...this.props} /> )