Skip to content

Commit

Permalink
Improve unbonding deposits id display
Browse files Browse the repository at this point in the history
  • Loading branch information
JayJay1024 committed Mar 13, 2024
1 parent d445d75 commit 96db668
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/unbonding-deposit-tooltip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ function UnbondingDeposit({ unbondings, token, onCancelUnbonding, onRelease }: P
key={`${index}${depositId}${amount.toString()}${expiredAtBlock}${expiredTimestamp}`}
className="text-xs font-light text-white"
>
{`#${index + 1} ${formatBlanace(amount, token.decimals, { keepZero: false })} Deposit ${
{`#${depositId} ${formatBlanace(amount, token.decimals, { keepZero: false })} Deposit ${
token.symbol
} is unbonding and will be released to deposit in ${formatDistanceStrict(
expiredTimestamp,
Expand All @@ -75,7 +75,7 @@ function UnbondingDeposit({ unbondings, token, onCancelUnbonding, onRelease }: P
key={`${index}${depositId}${amount.toString()}${expiredAtBlock}${expiredTimestamp}`}
className="text-xs font-bold text-white"
>
{`#${index + 1} ${formatBlanace(amount, token.decimals, { keepZero: false })} ${
{`#${depositId} ${formatBlanace(amount, token.decimals, { keepZero: false })} ${
token.symbol
} has complete the unbonding exit delay period. `}
<EnsureMatchNetworkButton className="text-primary" onClick={() => onRelease("deposit")}>
Expand Down

0 comments on commit 96db668

Please sign in to comment.