In progress

This commit is contained in:
James Grugett 2022-03-22 15:26:25 -05:00
parent ce7e8900a1
commit 3a22a3237f
2 changed files with 2 additions and 2 deletions

View File

@ -249,7 +249,7 @@ export function SellAmountInput(props: {
<Row className="items-center gap-2"> <Row className="items-center gap-2">
Loan repaid{' '} Loan repaid{' '}
<InfoTooltip <InfoTooltip
text={`Sold shares go toward paying off loans for this market first.`} text={`Sold shares go toward paying off loans first.`}
/> />
</Row> </Row>
<span className="text-neutral">{formatMoney(loanRepaid)}</span>{' '} <span className="text-neutral">{formatMoney(loanRepaid)}</span>{' '}

View File

@ -197,7 +197,7 @@ export function BetPanel(props: {
) : sellOutcome ? ( ) : sellOutcome ? (
<> <>
<div className="mb-3 text-left "> <div className="mb-3 text-left ">
You have {Math.round(yesShares || noShares)}{' '} You have {formatWithCommas(yesShares || noShares)}{' '}
<OutcomeLabel outcome={sellOutcome} /> shares <OutcomeLabel outcome={sellOutcome} /> shares
</div> </div>