Fixes from Stephen's review
This commit is contained in:
parent
ea51633caa
commit
a2328587d0
|
@ -250,7 +250,7 @@ export function SellAmountInput(props: {
|
||||||
Sale proceeds{' '}
|
Sale proceeds{' '}
|
||||||
<span className="text-neutral">{formatMoney(saleValue)}</span>
|
<span className="text-neutral">{formatMoney(saleValue)}</span>
|
||||||
</Row>
|
</Row>
|
||||||
{prevLoanAmount && (
|
{!!prevLoanAmount && (
|
||||||
<Row className="items-center justify-between gap-2 text-gray-500">
|
<Row className="items-center justify-between gap-2 text-gray-500">
|
||||||
<Row className="items-center gap-2">
|
<Row className="items-center gap-2">
|
||||||
Loan repaid{' '}
|
Loan repaid{' '}
|
||||||
|
|
|
@ -364,7 +364,7 @@ function SellPanel(props: {
|
||||||
|
|
||||||
const initialProb = getProbability(contract)
|
const initialProb = getProbability(contract)
|
||||||
const { newPool } = calculateCpmmSale(contract, {
|
const { newPool } = calculateCpmmSale(contract, {
|
||||||
shares: amount ?? 0,
|
shares: Math.min(amount ?? 0, shares),
|
||||||
outcome: sharesOutcome,
|
outcome: sharesOutcome,
|
||||||
})
|
})
|
||||||
const resultProb = getCpmmProbability(newPool, contract.p)
|
const resultProb = getCpmmProbability(newPool, contract.p)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user