Skip to content

Commit

Permalink
original bao distribution amout bugfix (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
zfogg authored Nov 26, 2022
1 parent 28fe8fa commit 7089c84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/distribution/components/Locked.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ const Migration: React.FC = () => {
<Typography className='py-2 font-semibold text-text-100'>Original Distribution Amount</Typography>
<div className='flex h-8 w-auto flex-row items-center justify-center gap-2 rounded border border-primary-400 bg-primary-100 px-2 py-4'>
<Image src='/images/tokens/BAO.png' height={24} width={24} alt='BAO' />
<Typography className='font-bold'>{getDisplayBalance(dist ? dist.amountOwedTotal : BigNumber.from(0))}</Typography>
<Typography className='font-bold'>{getDisplayBalance(merkleLeaf ? merkleLeaf.amount : BigNumber.from(0))}</Typography>
</div>
</div>

Expand Down

0 comments on commit 7089c84

Please sign in to comment.