Skip to content

Commit

Permalink
Fix 'All' tab data amount sort
Browse files Browse the repository at this point in the history
  • Loading branch information
VegeBun-csj committed Sep 22, 2024
1 parent 07acefd commit 48b64e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hooks/usePendingMigrationsData.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export const usePendingMigrationsData = ({
'dora',
fromHex(record.vota.startsWith('0x') ? record.vota.slice(2) : record.vota)
),
amount: BigNumber(record.amount).shiftedBy(-18).toFixed(),
amount: BigNumber(record.amount).shiftedBy(-18),
txHash: ethers.hexlify(record.txHash),
})) as PendingMigrationData[];
setPendingMigrations(mappedData);
Expand Down

0 comments on commit 48b64e9

Please sign in to comment.