Chore: omit fiat value from cashbox row

This commit is contained in:
csrapr 2021-03-23 20:35:22 +00:00 committed by Josh Harvey
parent 24e58489ff
commit 58b74a6425

View file

@ -51,9 +51,11 @@ const CashIn = ({ currency, notes, total }) => {
<Info2 className={classes.noMarginText}>{notes} notes</Info2> <Info2 className={classes.noMarginText}>{notes} notes</Info2>
</div> </div>
<div className={classes.innerRow}> <div className={classes.innerRow}>
{/* Feature on hold until this can be calculated
<Label1 className={classes.noMarginText}> <Label1 className={classes.noMarginText}>
{total} {currency.code} {total} {currency.code}
</Label1> </Label1>
*/}
</div> </div>
</div> </div>
</div> </div>