Commit 77242a63 authored by tom's avatar tom

more fixes

parent 9021c429
......@@ -93,7 +93,7 @@ export const NETWORKS: Array<Network> = [
},
];
export const ACCOUNT_ROUTES = [ '/watchlist', 'private-tags', 'public-tags', 'api-keys', 'custom-abi' ];
export const ACCOUNT_ROUTES = [ '/watchlist', '/private-tags', '/public-tags', '/api-keys', '/custom-abi' ];
export function isAccountRoute(route: string) {
return ACCOUNT_ROUTES.includes(route);
......
......@@ -18,7 +18,7 @@ const WatchListAddressItem = ({ item }: {item: TWatchlistItem}) => {
<AddressLinkWithTooltip address={ item.address }/>
{ item.tokenBalance && (
<HStack spacing={ 0 } fontSize="sm" h={ 6 }>
<Image src="./xdai.png" alt="chain-logo" marginRight="10px" w="16px" h="16px"/>
<Image src="/xdai.png" alt="chain-logo" marginRight="10px" w="16px" h="16px"/>
<Text color={ mainTextColor }>{ `xDAI balance:${ nbsp }` + item.tokenBalance }</Text>
<Text variant="secondary">{ `${ nbsp }($${ item.tokenBalanceUSD } USD)` }</Text>
</HStack>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment