Skip to content

Commit

Permalink
fix(interest): usdt color code and coinBalanceDropdown
Browse files Browse the repository at this point in the history
  • Loading branch information
TheLeoB committed Jul 19, 2020
1 parent a91fb3a commit e4d32c0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/blockchain-info-components/src/Colors/DarkMode.ts
Expand Up @@ -82,6 +82,7 @@ const DarkTheme: DefaultTheme = {
xlm: '#797979',
'xlm-light': 'rgba(0, 0, 0, 0.15)',
usdt: '#26A17B',
'usdt-light': 'rgba(38, 161, 123, 0.15)',
// OLD - AVOID USE \\
// Brand
'brand-yellow': '#665227',
Expand Down
1 change: 1 addition & 0 deletions packages/blockchain-info-components/src/Colors/Default.ts
Expand Up @@ -79,6 +79,7 @@ const Default = {
xlm: '#121D33',
'xlm-light': 'rgba(0, 0, 0, 0.15)',
usdt: '#26A17B',
'usdt-light': 'rgba(38, 161, 123, 0.15)',
// OLD - AVOID USE \\
// Brand
'brand-yellow': '#FFB266',
Expand Down
Expand Up @@ -12,6 +12,8 @@ export const getData = (state, ownProps?: OwnProps) => {
return selectors.core.common.eth.getAccountBalances(state)
case 'PAX':
return selectors.core.common.eth.getErc20AccountBalances(state, 'PAX')
case 'USDT':
return selectors.core.common.eth.getErc20AccountBalances(state, 'USDT')
default:
return Remote.Success([])
}
Expand Down

0 comments on commit e4d32c0

Please sign in to comment.