Skip to content

Commit

Permalink
fix: swap token ui (#267)
Browse files Browse the repository at this point in the history
  • Loading branch information
heisenberg-2077 authored May 15, 2024
1 parent f493c56 commit ace88fd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ const Swap = ({
text={
<View className="flex flex-row">
<Text style={commonStyle.primaryText}>
{formatAmount(payToken.amount)}
{formatAmount(payToken.amount)}{' '}
</Text>
<Values.TokenSymbol
token={payToken}
Expand Down Expand Up @@ -160,7 +160,7 @@ const Swap = ({
balanceChange.success && balanceChange.support ? (
<View className="flex flex-row">
<Text style={commonStyle.primaryText}>
{formatAmount(receiveToken.amount)}
{formatAmount(receiveToken.amount)}{' '}
</Text>
<Values.TokenSymbol
token={receiveToken}
Expand Down

0 comments on commit ace88fd

Please sign in to comment.