diff --git a/js/src/ui/DappLink/dappLink.js b/js/src/ui/DappLink/dappLink.js index d8b458e51..ba74b3e67 100644 --- a/js/src/ui/DappLink/dappLink.js +++ b/js/src/ui/DappLink/dappLink.js @@ -41,8 +41,6 @@ export default class DappLink extends Component { } onClick = () => { - const { to } = this.props; - - window.parent.location.hash = `/app${to}`; + window.parent.location.hash = this.props.to; } }