Skip to content

Commit

Permalink
Fix swap fee info design, Fee bps
Browse files Browse the repository at this point in the history
  • Loading branch information
HeesungB committed Jul 12, 2024
1 parent 1080b79 commit aa0bc91
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,7 @@ export const SwapFeeInfo: FunctionComponent<{
</Text>

<TouchableWithoutFeedback
style={{paddingLeft: 4}}
hitSlop={{top: 4, bottom: 4, left: 4, right: 4}}
onPress={() => {
setIsInfoModalOpen(true);
Expand Down Expand Up @@ -400,7 +401,7 @@ export const SwapFeeInfo: FunctionComponent<{
id: 'page.ibc-swap.components.swap-fee-info.keplr-swap-fee-information.paragraph',
},
{
swapFeePercent: `${SwapFeeBps.value / 100}%`,
swapFeePercent: `${amountConfig.swapFeeBps / 100}%`,
},
)}
/>
Expand Down

0 comments on commit aa0bc91

Please sign in to comment.