From 985621982badb1a3af5bcf9ddba32b63f7f333e6 Mon Sep 17 00:00:00 2001 From: mantikoros Date: Thu, 16 Dec 2021 15:35:06 -0600 Subject: [PATCH] bets wording --- web/components/bet-panel.tsx | 6 ++++-- web/components/bets-list.tsx | 6 +++--- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/web/components/bet-panel.tsx b/web/components/bet-panel.tsx index 02242239..793a9a2c 100644 --- a/web/components/bet-panel.tsx +++ b/web/components/bet-panel.tsx @@ -135,14 +135,16 @@ export function BetPanel(props: { contract: Contract; className?: string }) {
Remaining balance
{formatMoney(remainingBalance > 0 ? remainingBalance : 0)}
-
Implied chance
+
Implied probability
{formatPercent(initialProb)}
{formatPercent(resultProb)}
-
Max payout (estimated)
+
+ Max payout (estimated) +
{formatMoney(estimatedWinnings)}   (+{estimatedReturnPercent})
diff --git a/web/components/bets-list.tsx b/web/components/bets-list.tsx index 2bfb3faf..17ca6344 100644 --- a/web/components/bets-list.tsx +++ b/web/components/bets-list.tsx @@ -174,7 +174,7 @@ export function MyBetsSummary(props: { return ( -
Total bet
+
Total bets
{formatMoney(betsTotal)}
{resolution ? ( @@ -188,13 +188,13 @@ export function MyBetsSummary(props: { <>
- If + Payout if
{formatMoney(yesWinnings)}
- If + Payout if
{formatMoney(noWinnings)}