Skip to content

Commit

Permalink
Merge pull request #893 from telosnetwork/891-bug--the-transaction-pa…
Browse files Browse the repository at this point in the history
…ge-shows-a-normal-address-as-a-not-verified-contract

#891 | AddressField fixed (contract icon on normal address)
  • Loading branch information
pmjanus authored Dec 9, 2024
2 parents d7857f1 + 67798ff commit 6520804
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/AddressField.vue
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ const getDisplay = async () => {
};

const loadDisplayInfo = async () => {
let info = await useChainStore().currentChain.settings.getContractManager().getContractDisplayInfo(props.address) ?? { address: props.address };
let info = await useChainStore().currentChain.settings.getContractManager().getContractDisplayInfo(props.address);

if (info) {
contractName.value = info.name ?? '';
Expand Down

0 comments on commit 6520804

Please sign in to comment.