Browse Source

Fix back button going to the wrong step on send flow

master
Thibaut Boustany 7 years ago
parent
commit
4771ec1e86
No known key found for this signature in database GPG Key ID: 32475B11A2B13EEC
  1. 2
      src/components/modals/Send/SendModalBody.js

2
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'),

Loading…
Cancel
Save