diff --git a/src/components/Textarea/index.js b/src/components/Textarea/index.js
index a3ebbf20..e0f2c8e5 100644
--- a/src/components/Textarea/index.js
+++ b/src/components/Textarea/index.js
@@ -126,6 +126,8 @@ const TextArea = ({
name,
onChange,
topLabel,
+ rows,
+ maxRows,
state = '',
bottomText = '',
isInTrezorAction = false,
@@ -137,6 +139,8 @@ const TextArea = ({
{topLabel}
)}
@@ -175,7 +176,8 @@ class SignVerify extends Component {
@@ -209,7 +211,8 @@ class SignVerify extends Component {
name="verifyMessage"
value={this.state.verifyMessage}
onChange={this.handleInputChange}
- rows="4"
+ rows={4}
+ maxRows={4}
maxLength="255"
/>
@@ -219,7 +222,8 @@ class SignVerify extends Component {
name="verifySignature"
value={this.state.verifySignature}
onChange={this.handleInputChange}
- rows="4"
+ rows={4}
+ maxRows={4}
maxLength="255"
/>