diff --git a/app/components/wallet/send/trezor/TrezorSendConfirmationDialog.js b/app/components/wallet/send/trezor/TrezorSendConfirmationDialog.js index 7cff52f795..db81efe275 100644 --- a/app/components/wallet/send/trezor/TrezorSendConfirmationDialog.js +++ b/app/components/wallet/send/trezor/TrezorSendConfirmationDialog.js @@ -118,7 +118,9 @@ export default class TrezorSendConfirmationDialog extends Component { const actions = [ { label: intl.formatMessage(globalMessages.walletSendConfirmationBackButtonLabel), - onClick: !isSubmitting && onCancel, + onClick: isSubmitting + ? () => {} // noop + : onCancel }, { label: intl.formatMessage(messages.sendUsingTrezorButtonLabel),