This commit is contained in:
Kasia Jarmołkowicz 2018-06-08 15:27:21 +02:00 committed by Eric Schultz
parent 1944d689cd
commit 8857cde6c8

View file

@ -194,18 +194,16 @@ const headerDesignation = state => {
} }
const wizardWrapper = state => { const wizardWrapper = state => {
// return h('div.wizard-steps.donation-steps', [ return h('div.wizard-steps.donation-steps', [
// wizard.view(R.merge(state.wizard, { wizard.view(R.merge(state.wizard, {
// steps: [ steps: [
// {name: I18n.t('nonprofits.donate.amount.label'), body: amountStep.view(state.amountStep)} {name: I18n.t('nonprofits.donate.amount.label'), body: amountStep.view(state.amountStep)}
// , {name: I18n.t('nonprofits.donate.info.label'), body: infoStep.view(state.infoStep)} , {name: I18n.t('nonprofits.donate.info.label'), body: infoStep.view(state.infoStep)}
// , {name: I18n.t('nonprofits.donate.payment.label'), body: paymentStep.view(state.paymentStep)} , {name: I18n.t('nonprofits.donate.payment.label'), body: paymentStep.view(state.paymentStep)}
// ] ]
// , followup: followupStep.view(state) , followup: followupStep.view(state)
// })) }))
// ]) ])
return h('div.wizard-steps.donation-steps', 'Donation widget should be here.')
} }
module.exports = {view, init} module.exports = {view, init}