fix: use the correct input component for the Blockcypher confidence factor
This commit is contained in:
parent
d62db527de
commit
b82b599252
1 changed files with 4 additions and 5 deletions
|
|
@ -1,7 +1,6 @@
|
|||
import * as Yup from 'yup'
|
||||
|
||||
import CheckboxInput from 'src/components/inputs/formik/Checkbox'
|
||||
import TextInputFormik from 'src/components/inputs/formik/TextInput'
|
||||
import { Checkbox, TextInput, NumberInput } from 'src/components/inputs/formik'
|
||||
|
||||
export default {
|
||||
code: 'blockcypher',
|
||||
|
|
@ -11,19 +10,19 @@ export default {
|
|||
{
|
||||
code: 'token',
|
||||
display: 'API Token',
|
||||
component: TextInputFormik,
|
||||
component: TextInput,
|
||||
face: true,
|
||||
long: true
|
||||
},
|
||||
{
|
||||
code: 'confidenceFactor',
|
||||
display: 'Confidence Factor',
|
||||
component: TextInputFormik,
|
||||
component: NumberInput,
|
||||
face: true
|
||||
},
|
||||
{
|
||||
code: 'rbf',
|
||||
component: CheckboxInput,
|
||||
component: Checkbox,
|
||||
settings: {
|
||||
field: 'wallets_BTC_wallet',
|
||||
enabled: true,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue