Expand allowable message size for SignVerify to be 1024 which matches FW limits

pull/593/head
brianddk 5 years ago
parent 0627d28e07
commit bee8fc3b5c
No known key found for this signature in database
GPG Key ID: 835F0433A6D51860

@ -119,7 +119,7 @@ class SignVerify extends Component<Props> {
onChange={this.handleInputChange} onChange={this.handleInputChange}
rows={4} rows={4}
maxRows={4} maxRows={4}
maxLength={255} maxLength={1024}
/> />
</Row> </Row>
<Row> <Row>
@ -172,7 +172,7 @@ class SignVerify extends Component<Props> {
onChange={this.handleInputChange} onChange={this.handleInputChange}
rows={4} rows={4}
maxRows={4} maxRows={4}
maxLength={255} maxLength={1024}
/> />
</Row> </Row>
<Row> <Row>

Loading…
Cancel
Save