fix: replace puloon list with F56

This commit is contained in:
Nikola Ubavic 2022-03-09 02:00:16 +01:00
parent 348260931e
commit a9b7221a38
4 changed files with 361 additions and 155 deletions

View file

@ -5,7 +5,7 @@ const getBillOptions = R.curry((locale, denomiations) => {
return R.compose(
R.map(code => ({ code: parseInt(code), display: code })),
R.keys,
R.path([currency])
R.path([currency, 'lengths'])
)(denomiations)
})