diff --git a/web/components/bets-list.tsx b/web/components/bets-list.tsx index b3a462f2..caf01b7b 100644 --- a/web/components/bets-list.tsx +++ b/web/components/bets-list.tsx @@ -63,7 +63,7 @@ export function BetsList(props: { user: User }) { return ( - +
Active bets
{formatMoney(currentBets)}
diff --git a/web/components/user-page.tsx b/web/components/user-page.tsx index 9c5ee090..d97cdade 100644 --- a/web/components/user-page.tsx +++ b/web/components/user-page.tsx @@ -71,12 +71,12 @@ export function UserPage(props: { user: User }) {
- + <Title text="Your markets" /> <ContractsList creator={user} /> <Spacer h={4} /> - <Title className="px-2" text="Your bets" /> + <Title text="Your bets" /> <BetsList user={user} /> </div> </div>