Skip to content
Snippets Groups Projects
Commit 2ddc1ba0 authored by James Calfee's avatar James Calfee Committed by Valentine Zavgorodnev
Browse files

Power up should not show memo. close #474 (#475)

parent 6656b7a6
No related branches found
No related tags found
No related merge requests found
...@@ -63,7 +63,7 @@ class TransferForm extends Component { ...@@ -63,7 +63,7 @@ class TransferForm extends Component {
} }
const {toVesting} = props const {toVesting} = props
const fields = toVesting ? ['to', 'amount'] : ['to', 'amount', 'asset'] const fields = toVesting ? ['to', 'amount'] : ['to', 'amount', 'asset']
if(transferType !== 'Transfer to Savings' && transferType !== 'Savings Withdraw') if(!toVesting && transferType !== 'Transfer to Savings' && transferType !== 'Savings Withdraw')
fields.push('memo') fields.push('memo')
reactForm({ reactForm({
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment