Skip to content

Commit

Permalink
Explorers section: bring hashes to lower case in the url (#2481)
Browse files Browse the repository at this point in the history
  • Loading branch information
isstuev authored Dec 23, 2024
1 parent 30c377e commit a49e6e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ui/pages/Address.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ const AddressPageContent = () => {
<SolidityscanReport hash={ hash }/> }
{ !isLoading && addressEnsDomainsQuery.data && config.features.nameService.isEnabled &&
<AddressEnsDomains query={ addressEnsDomainsQuery } addressHash={ hash } mainDomainName={ addressQuery.data?.ens_domain_name }/> }
<NetworkExplorers type="address" pathParam={ hash }/>
<NetworkExplorers type="address" pathParam={ hash.toLowerCase() }/>
</Flex>
);

Expand Down
2 changes: 1 addition & 1 deletion ui/token/TokenPageTitle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ const TokenPageTitle = ({ tokenQuery, addressQuery, hash }: Props) => {
<AccountActionsMenu isLoading={ isLoading }/>
<Flex ml={{ base: 0, lg: 'auto' }} columnGap={ 2 } flexGrow={{ base: 1, lg: 0 }}>
<TokenVerifiedInfo verifiedInfoQuery={ verifiedInfoQuery }/>
<NetworkExplorers type="token" pathParam={ addressHash } ml={{ base: 'auto', lg: 0 }}/>
<NetworkExplorers type="token" pathParam={ addressHash.toLowerCase() } ml={{ base: 'auto', lg: 0 }}/>
</Flex>
</Flex>
);
Expand Down

0 comments on commit a49e6e1

Please sign in to comment.