Skip to content

Commit

Permalink
Fix merge
Browse files Browse the repository at this point in the history
  • Loading branch information
IanPhilips committed Sep 30, 2024
1 parent 7e3ecac commit 79e5aff
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions web/components/bet/bet-summary.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ import { NoLabel, YesLabel } from '../outcome-label'
import { ProfitBadge } from '../profit-badge'
import { InfoTooltip } from '../widgets/info-tooltip'
import { MoneyDisplay } from './money-display'
import { useUser } from 'web/hooks/use-user'

export function UserBetsSummary(props: {
contract: Contract
Expand Down Expand Up @@ -249,7 +248,7 @@ export function BetsSummary(props: {
)}
</Row>

{!hideTweet && resolution && profit >= 1 && user?.username && (
{!hideTweet && resolution && profit >= 1 && (
<Row className={'mt-4 items-center gap-2'}>
<div>
{areYourBets ? 'You' : 'They'} made{' '}
Expand Down

0 comments on commit 79e5aff

Please sign in to comment.