Skip to content

Commit

Permalink
Fixed claim transaction cxToken amount #1208
Browse files Browse the repository at this point in the history
  • Loading branch information
flashburst committed Jun 20, 2024
1 parent 571133a commit 26b1120
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/my-policies/MyPoliciesTxsTable.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ const CxTokenAmountRenderer = ({ row }) => {

const tokenAmountWithSymbol = row.txType === ROW_TYPES.COVER_PURCHASED
? <TokenAmountSpan amountInUnits={row.cxtokenAmount} decimals={0} symbol={row.tokenSymbol} />
: <TokenAmountSpan className='text-FA5C2F' amountInUnits={row.stablecoinAmount} decimals={0} symbol={row.tokenSymbol} />
: <TokenAmountSpan className='text-FA5C2F' amountInUnits={row.cxtokenAmount} decimals={0} symbol={row.tokenSymbol} />

return (
<td className='max-w-sm px-6 py-6 text-right' data-testid='col-amount'>
Expand Down

0 comments on commit 26b1120

Please sign in to comment.