Skip to content

Commit

Permalink
Merge pull request #32 from gamba-labs/v2
Browse files Browse the repository at this point in the history
V2
  • Loading branch information
doctorsolana committed Dec 30, 2023
2 parents 1054186 + 6f85c72 commit c5d0002
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/platform/src/sections/RecentPlays/RecentPlays.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ function RecentPlay({ event }: {event: GambaTransaction<'GameSettled'>}) {
({multiplier.toFixed(2)}x)
</div>
)}
{data.jackpotWin.toNumber() > 0 && (
{data.jackpotPayoutToUser.toNumber() > 0 && (
<Jackpot>
+<TokenValue mint={data.tokenMint} amount={data.jackpotWin.toNumber()} />
+<TokenValue mint={data.tokenMint} amount={data.jackpotPayoutToUser.toNumber()} />
</Jackpot>
)}
</>
Expand Down

0 comments on commit c5d0002

Please sign in to comment.