Browse Source
Merge pull request #484 from MortalKastor/fix-back-button
Fix back button going to the wrong step on send flow
master
Thibaut
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/components/modals/Send/SendModalBody.js
|
@ -107,7 +107,7 @@ class SendModalBody extends PureComponent<Props, State<*>> { |
|
|
canClose: ({ error }) => !!error, |
|
|
canClose: ({ error }) => !!error, |
|
|
canNext: () => true, |
|
|
canNext: () => true, |
|
|
canPrev: ({ error }) => !!error, |
|
|
canPrev: ({ error }) => !!error, |
|
|
prevStep: 1, |
|
|
prevStep: 0, |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
label: t('send:steps.confirmation.title'), |
|
|
label: t('send:steps.confirmation.title'), |
|
|