Browse Source
Correct reset state when retrying verify address
master
meriadec
7 years ago
No known key found for this signature in database
GPG Key ID: 1D2FC2305E2CB399
1 changed files with
1 additions and
1 deletions
-
src/components/modals/Receive/index.js
|
|
@ -122,7 +122,7 @@ class ReceiveModal extends PureComponent<Props, State> { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
handleRetry = () => this.setState({ isAddressVerified: null, errorSteps: [] }) |
|
|
|
handleRetry = () => this.setState({ isAddressVerified: null, isAppOpened: false, errorSteps: [] }) |
|
|
|
handleReset = () => this.setState({ ...INITIAL_STATE }) |
|
|
|
handleCloseModal = () => this.props.closeModal(MODAL_RECEIVE) |
|
|
|
handleStepChange = step => this.setState({ stepId: step.id }) |
|
|
|