diff --git a/app/components/topbar-account-panel/component.js b/app/components/topbar-account-panel/component.js index 4934e88..d7ae8a4 100644 --- a/app/components/topbar-account-panel/component.js +++ b/app/components/topbar-account-panel/component.js @@ -14,7 +14,7 @@ export default Component.extend({ userHasEthereumWallet: computed(function() { return isPresent(window.ethereum); - }).volatile(), + }), showConnectButton: computed('userHasEthereumWallet', 'kredits.hasAccounts', function() { diff --git a/app/controllers/dashboard/contributions/show.js b/app/controllers/dashboard/contributions/show.js index ef7f280..cd9a097 100644 --- a/app/controllers/dashboard/contributions/show.js +++ b/app/controllers/dashboard/contributions/show.js @@ -7,6 +7,6 @@ export default Controller.extend({ ipfsGatewayUrl: computed(function() { return config.ipfs.gatewayUrl; - }).volatile() + }) }); diff --git a/app/controllers/dashboard/contributors/show.js b/app/controllers/dashboard/contributors/show.js index ebd0b1e..8d8be09 100644 --- a/app/controllers/dashboard/contributors/show.js +++ b/app/controllers/dashboard/contributors/show.js @@ -12,6 +12,6 @@ export default Controller.extend({ ipfsGatewayUrl: computed(function() { return config.ipfs.gatewayUrl; - }).volatile() + }) });