diff --git a/src/components/common/EthHashInfo/index.tsx b/src/components/common/EthHashInfo/index.tsx index f5f66a60aa..18559af22e 100644 --- a/src/components/common/EthHashInfo/index.tsx +++ b/src/components/common/EthHashInfo/index.tsx @@ -16,7 +16,7 @@ const EthHashInfo = ({ const currentChainId = useChainId() const chain = useAppSelector((state) => selectChainById(state, props.chainId || currentChainId)) const addressBook = useAddressBook() - const link = chain && getBlockExplorerLink(chain, props.address) : undefined + const link = chain && props.hasExplorer ? getBlockExplorerLink(chain, props.address) : undefined const name = showName ? addressBook[props.address] || props.name : undefined return (