Skip to content

Commit

Permalink
Fix explorer link
Browse files Browse the repository at this point in the history
  • Loading branch information
zeekay committed Nov 13, 2024
1 parent 0bc459a commit dc3a788
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Tokens/TokenDetails/About.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export function AboutSection({ address, chainId, description, homepageUrl, twitt
<ResourcesContainer data-cy="resources-container">
<Resource
name={chainId === SupportedChainId.MAINNET ? 'Etherscan' : 'Block Explorer'}
link={`${baseExplorerUrl}${address === 'NATIVE' ? '' : 'address/' + address}`}
link={`${baseExplorerUrl}${address === 'NATIVE' ? '' : '/address/' + address}`}
/>
<Resource name="More analytics" link={`https://info.uniswap.org/#/tokens/${address}`} />
{homepageUrl && <Resource name="Website" link={homepageUrl} />}
Expand Down

0 comments on commit dc3a788

Please sign in to comment.