fix: small bugfixes and improvements

This commit is contained in:
Taranto 2020-09-24 09:33:43 +01:00 committed by Josh Harvey
parent f6547341f1
commit c45241471e
14 changed files with 97 additions and 205 deletions

View file

@ -11,7 +11,7 @@ import WizardSplash from './WizardSplash'
import WizardStep from './WizardStep'
import { DenominationsSchema } from './helper'
const LAST_STEP = 3
const LAST_STEP = 4
const MODAL_WIDTH = 554
const MODAL_HEIGHT = 520
@ -60,6 +60,13 @@ const Wizard = ({ machine, locale, onClose, save, error }) => {
type: 'bottom',
display: 'Cassette 2',
component: Autocomplete
},
{
type: 'zeroConfLimit',
display: '0-conf Limit',
schema: Yup.object().shape({
zeroConfLimit: Yup.number().required()
})
}
]