Skip to content

Commit

Permalink
fix: styling in USN token box
Browse files Browse the repository at this point in the history
  • Loading branch information
esaminu committed Apr 28, 2022
1 parent 5439f77 commit fc2ed4c
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 fc2ed4c

Please sign in to comment.