Consistently floor user.balance

This commit is contained in:
Austin Chen 2022-02-16 19:19:11 -08:00
parent 87a33933e4
commit 515676f885

View File

@ -144,7 +144,7 @@ export function BetsList(props: { user: User }) {
<Col> <Col>
<div className="text-sm text-gray-500">Balance</div> <div className="text-sm text-gray-500">Balance</div>
<div className="whitespace-nowrap text-lg"> <div className="whitespace-nowrap text-lg">
{formatMoney(user.balance)}{' '} {formatMoney(Math.floor(user.balance))}{' '}
</div> </div>
</Col> </Col>
<Col> <Col>