Skip to content

Commit

Permalink
fix: remove toAmount rounding
Browse files Browse the repository at this point in the history
  • Loading branch information
micaelae committed Nov 22, 2024
1 parent 8fa72ab commit f1b891e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/pages/bridge/prepare/prepare-bridge-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ const PrepareBridgePage = () => {
testId: 'to-amount',
readOnly: true,
disabled: true,
value: activeQuote?.toTokenAmount?.amount.toFixed(2) ?? '0',
value: activeQuote?.toTokenAmount?.amount.toFixed() ?? '0',
className: activeQuote?.toTokenAmount.amount
? 'amount-input defined'
: 'amount-input',
Expand Down

0 comments on commit f1b891e

Please sign in to comment.