diff --git a/src/components/participant/ActionInputs/MoonbeamErc721.vue b/src/components/participant/ActionInputs/MoonbeamErc721.vue index 7491b819..042bde38 100644 --- a/src/components/participant/ActionInputs/MoonbeamErc721.vue +++ b/src/components/participant/ActionInputs/MoonbeamErc721.vue @@ -120,7 +120,7 @@ export default { methods: { checkWeb3Injection() { try { - if (ethereum && ethereum.isMetaMask) { + if (window.ethereum && window.ethereum.isMetaMask) { this.web3 = new Web3(window.ethereum); } diff --git a/src/components/participant/Banner.vue b/src/components/participant/Banner.vue index 6850a582..0acbb8f7 100644 --- a/src/components/participant/Banner.vue +++ b/src/components/participant/Banner.vue @@ -27,7 +27,7 @@ export default { }, methods: { onBannerError(e) { - console.log(e.message); + console.error(e); this.brokenUrl = true } } diff --git a/src/components/participant/Metrics.vue b/src/components/participant/Metrics.vue index 78f8477d..fa6c39d9 100644 --- a/src/components/participant/Metrics.vue +++ b/src/components/participant/Metrics.vue @@ -1,3 +1,8 @@ +