Skip to content

Commit

Permalink
feat(simple buy): swap code and display name
Browse files Browse the repository at this point in the history
  • Loading branch information
Philip London committed Mar 27, 2020
1 parent 5b09cdc commit 51a0989
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ const CurrencyBoxComponent = (props: {
return (
<CurrencyBox role='button' onClick={props.onClick}>
<CurrencyText>
<Title>{props.cur.displayName}</Title>
<Value>{props.cur.code}</Value>
<Title>{props.cur.code}</Title>
<Value>{props.cur.displayName}</Value>
</CurrencyText>
{props.selectedCurrency === props.cur.code ? (
<Icon name='checkmark-in-circle-filled' color='green400' size='20px' />
Expand Down

0 comments on commit 51a0989

Please sign in to comment.