diff --git a/desktop-app/app/components/Addressinput/index.js b/desktop-app/app/components/Addressinput/index.js index 5f308143..4c761c18 100644 --- a/desktop-app/app/components/Addressinput/index.js +++ b/desktop-app/app/components/Addressinput/index.js @@ -33,6 +33,7 @@ class AddressBar extends React.Component { className={styles.addressInput} placeholder="https://your-website.com" value={this.state.userTypedAddress || this.props.address} + onKeyDown={this._handleKeyDown} onChange={e => this.setState({userTypedAddress: e.target.value})} />