Skip to content

Commit

Permalink
AddressField fixed (contract icon on normal address)
Browse files Browse the repository at this point in the history
  • Loading branch information
Viterbo committed Dec 8, 2024
1 parent d7857f1 commit 67798ff
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 67798ff

Please sign in to comment.