Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mstfash committed May 10, 2022
1 parent bc42c0c commit a51eeb1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/AuctionBlock.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,11 @@ const AuctionBlock = (auction: Props) => {
>
<InfoLabel>{sellSymbol} OFFERED</InfoLabel>
<InfoValue>{`${formatNumber(
sellInititalAmount,
eventType === 'DEBT' &&
Number(sellAmount) !==
Number(sellInititalAmount)
? sellAmount
: sellInititalAmount,
2
)} ${sellSymbol}`}</InfoValue>
</InfoCol>
Expand Down

0 comments on commit a51eeb1

Please sign in to comment.