fix: bill denomination not showing on edit
This commit is contained in:
parent
ccc4f67c6b
commit
ac61601397
1 changed files with 1 additions and 1 deletions
|
|
@ -3,7 +3,7 @@ import * as R from 'ramda'
|
|||
const getBillOptions = R.curry((locale, denomiations) => {
|
||||
const currency = R.prop('fiatCurrency')(locale)
|
||||
return R.compose(
|
||||
R.map(code => ({ code, display: code })),
|
||||
R.map(code => ({ code: parseInt(code), display: code })),
|
||||
R.keys,
|
||||
R.path([currency])
|
||||
)(denomiations)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue