Skip to content

Commit d4c99d5

Browse files
committed
fix: swaps UI bug
1 parent 54705e7 commit d4c99d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/pages/swap/components/swap-assets-pair/swap-assets-pair.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ export function SwapAssetsPair() {
2525
<SwapAssetItemLayout
2626
caption="You will swap"
2727
icon={swapAssetFrom.icon}
28-
symbol={swapAssetFrom.balance.symbol}
28+
symbol={swapAssetFrom.name}
2929
value={swapAmountFrom}
3030
/>
3131
}
3232
swapAssetTo={
3333
<SwapAssetItemLayout
3434
caption="You will receive"
3535
icon={swapAssetTo.icon}
36-
symbol={swapAssetTo.balance.symbol}
36+
symbol={swapAssetTo.name}
3737
value={swapAmountTo}
3838
/>
3939
}

0 commit comments

Comments
 (0)