1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
This commit is contained in:
David Walsh 2020-10-21 13:22:00 -05:00
parent 21875d1dd3
commit 6704aab16c

View File

@ -64,7 +64,7 @@ export default class EnsInput extends Component {
} = this.props
// Set the value of our input based on QR code provided by parent
if (input !== value && prevProps.value != value) {
if (input !== value && prevProps.value !== value) {
this.setState({ input: value })
}