Floor remaining balance

This commit is contained in:
James Grugett 2022-03-01 18:12:55 -08:00
parent 1d73f6e863
commit eb7bf72f0c

View File

@ -114,7 +114,7 @@ export function AmountInput(props: {
<Row className="items-center justify-between gap-2 text-gray-500"> <Row className="items-center justify-between gap-2 text-gray-500">
Remaining balance{' '} Remaining balance{' '}
<span className="text-neutral"> <span className="text-neutral">
{formatMoney(remainingBalance)} {formatMoney(Math.floor(remainingBalance))}
</span> </span>
</Row> </Row>
</Col> </Col>