Skip to content

Commit

Permalink
Merge pull request #2622 from near/hotfix-usn-tokenbox-styling
Browse files Browse the repository at this point in the history
fix: styling in USN token box
  • Loading branch information
esaminu authored Apr 28, 2022
2 parents 5439f77 + fc2ed4c commit adff8a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/frontend/src/components/wallet/TokenBox.js
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ const TokenBox = ({ token, onClick, currentLanguage }) => {
className='token-box'
onClick={onClick ? () => onClick(token) : null}
data-test-id={`token-selection-${token.contractName || 'NEAR'}`}
IS_USN={CREATE_USN_CONTRACT && token.onChainFTMetadata?.symbol === 'NEAR' || token.onChainFTMetadata?.symbol === 'USN'}
IS_USN={CREATE_USN_CONTRACT && (token.onChainFTMetadata?.symbol === 'NEAR' || token.onChainFTMetadata?.symbol === 'USN')}
>
<div style={{ display: 'flex', width: '100%' }}>
<div className='icon'>
Expand Down

0 comments on commit adff8a5

Please sign in to comment.