Fix shell links

This commit is contained in:
Jaco Greeff 2017-04-26 17:59:16 +02:00
parent a33dd0108d
commit d2cf1cbd0e
1 changed files with 1 additions and 3 deletions

View File

@ -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;
}
}