fix: cashbox denomination reversed
This commit is contained in:
parent
ef7dae5497
commit
ef7677b5dd
1 changed files with 2 additions and 2 deletions
|
|
@ -90,7 +90,7 @@ const CashCassettes = ({ machine, config, refetchData }) => {
|
||||||
view: (value, { deviceId }) => (
|
view: (value, { deviceId }) => (
|
||||||
<CashOut
|
<CashOut
|
||||||
className={classes.cashbox}
|
className={classes.cashbox}
|
||||||
denomination={getCashoutSettings(deviceId)?.bottom}
|
denomination={getCashoutSettings(deviceId)?.top}
|
||||||
currency={{ code: fiatCurrency }}
|
currency={{ code: fiatCurrency }}
|
||||||
notes={value}
|
notes={value}
|
||||||
/>
|
/>
|
||||||
|
|
@ -109,7 +109,7 @@ const CashCassettes = ({ machine, config, refetchData }) => {
|
||||||
return (
|
return (
|
||||||
<CashOut
|
<CashOut
|
||||||
className={classes.cashbox}
|
className={classes.cashbox}
|
||||||
denomination={getCashoutSettings(deviceId)?.top}
|
denomination={getCashoutSettings(deviceId)?.bottom}
|
||||||
currency={{ code: fiatCurrency }}
|
currency={{ code: fiatCurrency }}
|
||||||
notes={value}
|
notes={value}
|
||||||
/>
|
/>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue