chore: beta status on LN

This commit is contained in:
Rafael Taranto 2024-03-11 12:42:17 +00:00
parent 508adb573f
commit c06b373d5a
6 changed files with 15 additions and 5 deletions

View file

@ -208,7 +208,7 @@ const getElements = (cryptoCurrencies, accounts, onChange, wizard = false) => {
const widthAdjust = wizard ? 11 : 0
const viewCryptoCurrency = it => {
const currencyDisplay = R.compose(
R.prop(['display']),
it => `${R.prop(['display'])(it)} ${it.isBeta ? '(Beta)' : ''}`,
R.find(R.propEq('code', it))
)(cryptoCurrencies)
return currencyDisplay