diff --git a/new-lamassu-admin/src/pages/Wallet/helper.js b/new-lamassu-admin/src/pages/Wallet/helper.js index bcfc493a..c4f8d67c 100644 --- a/new-lamassu-admin/src/pages/Wallet/helper.js +++ b/new-lamassu-admin/src/pages/Wallet/helper.js @@ -76,9 +76,13 @@ const getAdvancedWalletElements = (cryptoCurrencies, coinUtils, config) => { size: 'sm', stripe: true, width: 250, - view: (_, ite) => - config[`${ite.id}_allowTransactionBatching`] ? 'Yes' : 'No', - input: Checkbox + view: (_, ite) => { + if (ite.id !== 'BTC') + return {`No`} + return config[`${ite.id}_allowTransactionBatching`] ? 'Yes' : 'No' + }, + input: Checkbox, + editable: it => it.id === 'BTC' } ] }